buzz44 Posted June 25, 2005 Posted June 25, 2005 I have a picture created with GUICtrlCreatePic() My script is very small and the picture appears to get its state set to hidden some how. Normally its state is 80, when not disabled, 144 when disabled and 160 when 'hidden' what do this numbers mean? qq
TuMbLeWeEd Posted June 25, 2005 Posted June 25, 2005 I have a picture created with GUICtrlCreatePic()My script is very small and the picture appears to get its state set to hidden some how.Normally its state is 80, when not disabled, 144 when disabled and 160 when 'hidden' what do this numbers mean?<{POST_SNAPBACK}>Try;ConsoleWrite("$GUI_ENABLE,$GUI_SHOW" & BitOr ($GUI_ENABLE,$GUI_SHOW) & @lf );80 ConsoleWrite("$GUI_DISABLE,$GUI_SHOW" & BitOr ($GUI_DISABLE,$GUI_SHOW) & @lf);144 ConsoleWrite("$GUI_ENABLE,$GUI_HIDE" & BitOr ($GUI_ENABLE,$GUI_HIDE) & @lf);96 ConsoleWrite("$GUI_DISABLE,$GUI_HIDE" & BitOr ($GUI_DISABLE,$GUI_HIDE) & @lf);160Explains it all My AutoIt stuffChatBichProjectSelectorWindow control grabberUsefull LinksPort forwarding with routers
buzz44 Posted June 26, 2005 Author Posted June 26, 2005 Thanks. Well apparently my picture, which it does not even have a controlID, gets its state set to $GUI_HIDE somehow... I'm not sure how thats even possible by when I do a sequence of things in order I can make it happen... Off to investigate... qq
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