Enforcer Posted January 29, 2015 Posted January 29, 2015 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 ? Making desktop notes gadget. [RU] Zone
Moderators JLogan3o13 Posted January 29, 2015 Moderators Posted January 29, 2015 (edited) 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 January 29, 2015 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!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now