Jump to content

Search the Community

Showing results for tags 'zordering'.

  • 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. Hi guys, I'm trying to z-order an inputbox and a label, but they doesn't work as expected... Look at this script: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <ColorConstants.au3> Local $left = 100, $top = 100 $hGui = GUICreate("", 400, 200, $left, $top) GUICtrlCreateLabel("RED LABEL", 9, 9, 302, 102) GUICtrlSetBkColor(-1, $COLOR_RED) $hInput = GUICtrlCreateInput("WHITE INPUT", 10, 10, 300, 100) GUICtrlSetState(-1, $GUI_ONTOP) ;GUICtrlSetStyle(-1, "", $WS_EX_TOPMOST) GUISetState() Sleep(2000) MouseMove(10 + $left + 20, 10 + $top + 30) While 1 If GUIGetMsg() = $GUI_EVENT_CLOSE Then Exit WEnd "White input" is not showed until I MouseMove over it, although it has the OnTop attribute. It has the same behaviour with TopMost property. Is this a bug?
×
×
  • Create New...