Jump to content

Search the Community

Showing results for tags 'win8.1'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. When I compile this scrpt it does not exit properly. It repeats its self once more then exits properly when closed again. Can any one repeat this problem and find a solution? I am using Autoit version 33.12.0 in win 8.1 64x REB #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Outfile=test.exe #AutoIt3Wrapper_Compression=4 #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> ;~ MsgBox(0,@,@AutoItVersion) ; I am using version 33.12.0 in win 8.1 64x Local $Form2, $PageControl1, $TabSheet1, $rules, $TabSheet2, $phases, $TabSheet3, $Definitions, $nMsg, $Operation $Form2 = GUICreate("PHASE 10 HELP", 1048, 521, 211, 150) GUISetFont(12, 400, 0, "MS Sans Serif") GUISetBkColor(0x193477) $PageControl1 = GUICtrlCreateTab(5, 8, 1036, 504) $TabSheet1 = GUICtrlCreateTabItem("Rules") $rules = GUICtrlCreateEdit("", 12, 35, 1017, 475, BitOR($ES_AUTOVSCROLL, $ES_READONLY, $ES_WANTRETURN, $WS_VSCROLL)) ;67 GUICtrlSetFont(-1, 14, 600, 0, "Arial") $TabSheet2 = GUICtrlCreateTabItem("Phases") $phases = GUICtrlCreateEdit("", 12, 35, 1017, 475, BitOR($ES_AUTOVSCROLL, $ES_READONLY, $ES_WANTRETURN, $WS_VSCROLL)) ;457 GUICtrlSetFont(-1, 14, 600, 0, "Arial") $TabSheet3 = GUICtrlCreateTabItem("Definitions") $Definitions = GUICtrlCreateEdit("", 12, 35, 1017, 475, BitOR($ES_AUTOVSCROLL, $ES_READONLY, $ES_WANTRETURN, $WS_VSCROLL)) ;48 449 GUICtrlSetFont(-1, 14, 600, 0, "Arial") $TabSheet4 = GUICtrlCreateTabItem("Operation") $Operation = GUICtrlCreateEdit("", 12, 35, 1017, 475, BitOR($ES_AUTOVSCROLL, $ES_WANTRETURN, $WS_VSCROLL)) ;67 $ES_READONLY, GUICtrlSetFont(-1, 14, 600, 0, "Arial") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE ExitLoop Sleep(10) EndSwitch WEnd Exit
×
×
  • Create New...