~~BIG R~~ Posted July 20, 2006 Posted July 20, 2006 #include <GUIConstants.au3> ; == GUI generated with Koda == $Form1 = GUICreate("AForm1", 622, 441, 192, 125) GUISetCursor (14) $Button1 = GUICtrlCreateButton("Send", 136, 192, 241, 105) GUICtrlCreateLabel("Do You Like Eggs?", 176, 104, 99, 17) $Radio1 = GUICtrlCreateRadio("Yes", 448, 88, 89, 49) $Radio2 = GUICtrlCreateRadio("No", 448, 152, 97, 65) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd Exit can anyone help me with this Pleas? I want it to take a pole and i need help with the if script please! Thank's!
w0uter Posted July 20, 2006 Posted July 20, 2006 Whats wrong with it ? My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
Valuater Posted July 20, 2006 Posted July 20, 2006 same subject from ealier post #include <GUIConstants.au3> ; == GUI generated with Koda == $Form1 = GUICreate("AForm1") $ck1 = GUICtrlCreateCheckbox("Helper", 40, 56, 81, 85) $btn = GUICtrlCreateButton( "test check box", 40, 156, 80, 35) GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $btn If BitAnd(GUICtrlRead($ck1),$GUI_CHECKED) = $GUI_CHECKED then MsgBox(64, "Test", "Box is Checked", 5) Case Else ;;;;;;; EndSelect WEnd Exit 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now