我是靠谱客的博主 饱满樱桃,最近开发中收集的这篇文章主要介绍CSpinButtonCtrl::GetPos()和GetPos32( )两个函数的用法ParametersReturn ValueRemarksRequirements,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

CSpinButtonCtrl::GetPos()和GetPos32( )两个函数的用法

今天写了一个程序,里面的结果有点意思,在BOOL Cex06aDlg::OnInitDialog()中,使用了spinbutton控件

设置如下:

 CSpinButtonCtrl *pSpin = (CSpinButtonCtrl *)GetDlgItem(IDC_SPIN1);
 pSpin->SetRange(0, 100);
 pSpin->SetPos(25);

 //m_strMyedit = _T("25"); //.Format()
 m_strMyedit.Format( _T("%3.1lf"), (double)pSpin->GetPos());
 SetDlgItemText(IDC_BUDDY_SPIN1, m_strMyedit);

 显示在文本编辑框里面的居然不是25.0,我之后还有一个消息函数,也是点击spinbutton控件来实现文本编辑诓的变化,如下:

void Cex06aDlg::OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
{
 // TODO: Add your message handler code here and/or call default
 
 if (nSBCode == SB_ENDSCROLL)
  return;
 if (pScrollBar->GetDlgCtrlID() == IDC_SPIN1) {
  CSpinButtonCtrl *pSpin = (CSpinButtonCtrl *)pScrollBar;
  m_strMyedit.Format(_T("%3.1lf"), double(pSpin->GetPos()) );
  SetDlgItemText(IDC_BUDDY_SPIN1, m_strMyedit);
 }

 CDialog::OnVScroll(nSBCode, nPos, pScrollBar);
}

结果都是从62256.0开始变化奇怪了,于是我便查msdn,关于这个函数的使用:

Retrieves the current position of a spin button control.

 
int GetPos( ) const;
int GetPos32(

LPBOOL lpbError = NULL 
) const;

Parameters

lpbError

A pointer to a boolean value that is set to zero if the value is successfully retrieved or non-zero if an error occurs. If this parameter is set to NULL, errors are not reported.

Return Value

The first version returns the 16-bit current position in the low-order word. The high-order word is nonzero if an error occurred.

The second version returns the 32-bit position.

Remarks

When it processes the value returned, the control updates its current position based on the caption of the buddy window. The control returns an error if there is no buddy window or if the caption specifies an invalid or out-of-range value.

Requirements

Header: afxcmn.h

 

这个一看就晓得了,GetPos32( )才可以实现32位的数据,而不带32的就只能得到16位,另外16就要问xp了,呵呵

把GetPos()改变为GetPos32( )一切ok啦。

不过在消息函数里面也可以不用上面的方法,用getbuddy()得到文本指针,再setwindowtext(m_strMystr)来显示。

最后

以上就是饱满樱桃为你收集整理的CSpinButtonCtrl::GetPos()和GetPos32( )两个函数的用法ParametersReturn ValueRemarksRequirements的全部内容,希望文章能够帮你解决CSpinButtonCtrl::GetPos()和GetPos32( )两个函数的用法ParametersReturn ValueRemarksRequirements所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部