Jump to content

daneczech

Members
  • Posts

    4
  • Joined

  • Last visited

daneczech's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thank you I wasn't searching good enough...
  2. Hello, I want to use a checkboxes but have them in style of a button with a little icon instead of the typical check mark. Also I want to make it that when you press the button, it stays pressed. Thanks for help
  3. why this doesn't work? AdlibRegister(test()) Func test() MsgBox(0,"","test") EndFunc Only one MsgBox pops up... And when I use it with GUI, it is too fast... $Form = GuiCreate("Test Windows", 300, 300, 300, 300) $label = GuiCtrlCreateLabel("0", 50,50,100,50) GuiSetState(@SW_SHOW) $i=0 While 1 AdlibRegister(changelabel(),2000) $msg=GuiGetMsg() If $msg=3 Then Exit WEnd Func changelabel() $i+=1 GuiCtrlSetData($label, $i) EndFunc Please help...
×
×
  • Create New...