Difference between revisions of "Checkboxes"

From Team Developer SqlWindows Wiki
Jump to: navigation, search
m
 
(One intermediate revision by one user not shown)
Line 1: Line 1:
'''This page covers Checkbox tips & tricks.'''
+
{{PageHeader|CheckBox}}
 +
 
  
 
__TOC__
 
__TOC__
<br>
+
 
  
 
<!------------------------------------------------------------------------------------------------------------------------------>
 
<!------------------------------------------------------------------------------------------------------------------------------>
Line 43: Line 44:
 
|TEXT=WIKI_CheckboxTextAtLeft.zip
 
|TEXT=WIKI_CheckboxTextAtLeft.zip
 
}}
 
}}
<br>
+
 
 +
 
 +
 
 +
 
 +
[[Category:Child Objects]]

Latest revision as of 11:19, 29 October 2013

CheckBox


Contents


Pointer2.png How to set value using only the window handle of a checkbox Pointer.png

First you have to declare this constant

Number: BM_SETCHECK   = 0x00F1


The next piece of code checks the checkbox

Call SalSendMsg( hWndItem, BM_SETCHECK, TRUE, 0 )

UnChecking

Call SalSendMsg( hWndItem, BM_SETCHECK, FALSE, 0 )


Pointer2.png How to set the checkbox text at the left Pointer.png

This also works for radiobuttons.
First you have to declare this constant

Number: BS_LEFTTEXT    = 0x00000020


The next piece of code sets the checkbox/radiobutton text at the left

Call VisWinSetStyle( hWndItem, BS_LEFTTEXT, TRUE )


CheckBoxTextLeft.png

Here you can download a sample:
Down.png WIKI_CheckboxTextAtLeft.zip