Difference between revisions of "Checkboxes"

From Team Developer SqlWindows Wiki
Jump to: navigation, search
(New page: This page covers checkbox tips & tricks. __TOC__ <br> <h2 style="margin:0;background-color:#ddcef2;font-size:120%;font-weight:bold;border:1px solid #afa3bf;text-align:left;color:#000;pad...)
 
Line 1: Line 1:
This page covers checkbox tips & tricks.
+
'''This page covers Checkbox tips & tricks.'''
  
 
__TOC__
 
__TOC__
 
<br>
 
<br>
  
<h2 style="margin:0;background-color:#ddcef2;font-size:120%;font-weight:bold;border:1px solid #afa3bf;text-align:left;color:#000;padding:0.2em 0.4em;">[[Image:Pointer.png]]How to set value using only the window handle of a checkbox</h2>
+
<!------------------------------------------------------------------------------------------------------------------------------>
 +
{{TipHeader|How to set value using only the window handle of a checkbox}}
 
First you have to declare this constant<br>
 
First you have to declare this constant<br>
 
<pre>
 
<pre>
Line 21: Line 22:
 
<br>
 
<br>
  
<h2 style="margin:0;background-color:#ddcef2;font-size:120%;font-weight:bold;border:1px solid #afa3bf;text-align:left;color:#000;padding:0.2em 0.4em;">[[Image:Pointer.png]]How to set the checkbox text at the left</h2>
+
<!------------------------------------------------------------------------------------------------------------------------------>
 +
{{TipHeader|How to set the checkbox text at the left}}
 
First you have to declare this constant<br>
 
First you have to declare this constant<br>
 
<pre>
 
<pre>

Revision as of 20:56, 24 September 2008

This page covers Checkbox tips & tricks.

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

First you have to declare this constant

Number: BS_LEFTTEXT    = 0x00000020


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

Call VisWinSetStyle( hWndItem, BS_LEFTTEXT, TRUE )