一个低级问题(50分)

  • 主题发起人 主题发起人 geshicheng
  • 开始时间 开始时间
G

geshicheng

Unregistered / Unconfirmed
GUEST, unregistred user!
函数功能:该函数改变按钮控制的选中状态。<br><br>&nbsp; &nbsp; 函数原型:BOOL CheckDlgButton(HWNDhDlg,int nlDButton,UINT uCheck);<br><br>&nbsp; &nbsp; 参数:<br><br>&nbsp; &nbsp; hDlg:指向含有该按钮的对话框的句柄。<br><br>&nbsp; &nbsp; nlDButton:标识要修改的按钮。<br><br>&nbsp; &nbsp; uCheck:给定该按钮的选中状态。该参数可取下列值,这些值的含义如下:<br><br>&nbsp; &nbsp; BST_CHECKED:设置按钮状态为己选中(checked)。<br><br>&nbsp; &nbsp; BST_INDETERMINATE:设置按钮状态变灰,表示不确定状态。只有在该按钮具有BS_3STATE或BS_AUTO3STATE样式时才能使用该值。<br><br>&nbsp; &nbsp; BST_UNCHECKED:设置按钮为未选中状态(unchecked)。<br><br>&nbsp; &nbsp; 返回值:如果函数执行成功,返回值非零;如果函数失败,则返回值为零。若想获取更多错误信息,请调用 GetLastError函数。<br><br>&nbsp; &nbsp; 如何调用,谁能给出例子<br>多谢
 
就是这样子用的比如:<br>IF fontdialog1.execute then<br>&nbsp; &nbsp; CheckDlgButton(fontDialog1.handle,buttonuwantchangeid,bst_checked);
 
接受答案了.
 
后退
顶部