Date: 02-16-2022
Return to Index
created by gbSnippets
'An online Check3State control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
'Primary Code:
'Syntax: Control Add Check3State, hDlg, id&, txt$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add Check3State, hDlg, 100,"Click Me", 50,50,100,20
'Compilable Example: (Jose Includes)
'The following compilable code demonstrates a dialog with a single check3state control.
'The Dialog CallBack function responds to changing the state of the control.
'Controls can also have a Callback function of their own.
#Compiler PBWin 9, PBWin 10
#Compile EXE
#Dim All
%Unicode=1
Global hDlg As Dword
Function PBMain() As Long
Dialog New Pixels, 0, "Check3State Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
Control Add Check3State, hDlg, 100,"Click Me", 50,50,100,20
Dialog Show Modal hDlg Call DlgProc
End Function
CallBack Function DlgProc() As Long
If CB.Msg = %WM_Command AND CB.Ctl = 100 AND CB.Ctlmsg = %BN_Clicked Then
MsgBox "Clicked!"
End If
End Function
'gbs_00085
'Date: 03-10-2012
http://www.garybeene.com/sw/gbsnippets.htm