Jump to content

Always on back window


 Share

Recommended Posts

Hello, I want to know - there is function to create always on top GUI, it's good, but what if I need to create always on back window, even if I try to activate it it must be on the back ? can you help me ?  :sweating:  

Making desktop notes gadget.

[RU] Zone
Link to comment
Share on other sites

  • Moderators

GUISetState(@SW_DISABLE)

 

Edit: More complete example:

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

GUICreate("Test", 300, 300)
GUISetState(@SW_SHOW)
GUISetState(@SW_DISABLE)

    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd

GUIDelete()
Edited by JLogan3o13

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...