Jump to content

dorst622

Members
  • Posts

    6
  • Joined

  • Last visited

dorst622's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. tks alot. this is what i need.
  2. my bad. here is the code #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> form1() func form1() $form1 = GUICreate("form1") $Button_0 = GUICtrlCreateButton("Form2", 20, 10, 100) GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button_0 form2() EndSelect WEnd EndFunc func form2() $form1 = GUICreate("form2") $Button_1 = GUICtrlCreateButton("close", 20, 10, 100) GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button_1 ;;;;;;close current form).how to close current for EndSelect WEnd EndFunc
  3. got my answer use AutoIt3Wrapper.
  4. well, i guest i did not make my question clear. i have tested the full version and compile the script to exe. no issue here. but when i check the compile exe program(right click the exe, propertety, version) the program version is always 3, 3, 4, 0 how do i change this. if you can refer to the attachment pics, this is what i mean. tks.
  5. how do you close a current form? i have 2 forms form 1 call form 2. than i like to close form 2. how do i do that.
  6. how do you compile with file version. when compiling the file to exec the version is always autoit detail and version is there away to compile it with my own version and details?
×
×
  • Create New...