phucbk2344 Posted March 24, 2018 Share Posted March 24, 2018 Hello every one, I want to make my GUI is maximize, but the button maximize is hide, how to make it? Thank all! Picture: Link to comment Share on other sites More sharing options...
TGT51 Posted March 24, 2018 Share Posted March 24, 2018 Hallo =))) Link to comment Share on other sites More sharing options...
phucbk2344 Posted March 24, 2018 Author Share Posted March 24, 2018 Well, can you help me :3 Link to comment Share on other sites More sharing options...
kaz Posted March 24, 2018 Share Posted March 24, 2018 what is your code? Link to comment Share on other sites More sharing options...
phucbk2344 Posted March 24, 2018 Author Share Posted March 24, 2018 #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 615, 437, 192, 124) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Thank you Link to comment Share on other sites More sharing options...
kaz Posted March 24, 2018 Share Posted March 24, 2018 You want to change the button of your gui, you have to look at the code to create the gui : GUICreate... and especially options. Look at style option... Bilgus 1 Link to comment Share on other sites More sharing options...
WilliamasKumeliukas Posted September 5, 2018 Share Posted September 5, 2018 On 24/03/2018 at 7:50 AM, phucbk2344 said: #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Thank you $Form1 = GUICreate("Form1", 615, 437, 192, 124, $WS_MAXIMIZEBOX) Br, Williamaskumeliukas Sorry if it's quite challenging to understand me sometimes, there is 2 possible reasons to this: Spoiler #1. I am a native French speaker and learned English mainly from chatting with others players in online games. #2. I have a developmental disorder mainly affecting my social abilities, way of thinking, understanding stuffs and explaining myself in which it can seem ironic of seeing me here, but I been working on getting better every days for an dozens of years now ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Do not like my dirty code? It's fine, but in my opinion, the dirty codes are unique and I believe it's a good glimpse of how the mind of the person who wrote it thinks, and that, that's what I call a psychological deduction step by step in all its splendor. ~WilliamasKumeliukas Link to comment Share on other sites More sharing options...
Zedna Posted September 7, 2018 Share Posted September 7, 2018 $Form1 = GUICreate("Form1", 615, 437, 192, 124, BitOr($GUI_SS_DEFAULT_GUI, $WS_SIZEBOX, $WS_MAXIMIZEBOX)) Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
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