Jump to content

LDEelco

Members
  • Posts

    1
  • Joined

  • Last visited

LDEelco's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello, I have created a GUI and made a Input with Updown arrows. The beginning value of that input is "11001001" and should go up from there. But when I press the up or down button that is attached to that input it changes to the maximim of 32767? Thanks for your help. Greetz, LDEelco Here is an example script: #include <GuiConstants.au3> GuiCreate("Program", 305, 250) GuiSetState() $input1 = GuiCtrlCreateInput ("11001001", 10, 10, 100, 20) GuiCtrlCreateUpdown ($input1, $UDS_NOTHOUSANDS) While 1 $msg = GUIGetMsg() Select Case $MSG = $GUI_EVENT_CLOSE Exit EndSelect WEnd
×
×
  • Create New...