DODODO Posted September 6, 2017 Posted September 6, 2017 OK, i'm new to AutoIt so please accept these noob questions... I'm using this line to create my GUI but the maximise button is disabled at the top right. What change do I make so that the form can be maximised and also sized as to the user's wishes? $hGUI = GUICreate("Main", 600, 600, 0, 0)
SlackerAl Posted September 6, 2017 Posted September 6, 2017 Look at the help page for GUICreate look at style, follow the link to the appendix for the values you want. Problem solving step 1: Write a simple, self-contained, running, replicator of your problem.
DODODO Posted September 6, 2017 Author Posted September 6, 2017 Perfect! Thanks. $hGUI = GUICreate("Main", 600, 600, 0, 0, $WS_MINIMIZEBOX + $WS_MAXIMIZEBOX)
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