lyledg Posted January 12, 2005 Posted January 12, 2005 Is it possible for the gui to be resized dynamically..?? Basically, I am writing a a program that will produce a *.au3 script, then compile it, but depending on the choices made intially to produce the *.au3 script, the gui might have to be resized accordingly What switches or functions can I use in my GUI creation that will allow the GUI to be resized? Hope this makes sense... Cheers
jpm Posted January 12, 2005 Posted January 12, 2005 Is it possible for the gui to be resized dynamically..??Basically, I am writing a a program that will produce a *.au3 script, then compile it, but depending on the choices made intially to produce the *.au3 script, the gui might have to be resized accordinglyWhat switches or functions can I use in my GUI creation that will allow the GUI to be resized?Hope this makes sense...Cheers<{POST_SNAPBACK}>I know there is a lot of info in the help but when you create a Gui you can read in the docBy default the dialog box is non sizable and non maximizable. So WS_SIZEBOX or WS_MAXIMIZEBOX can be used in the style parameter.If WS_SIZEBOX is use the first dialog box will be use as the minimum size and when expanding the control will be automatically position.I hope that's solve your issue
CyberSlug Posted January 12, 2005 Posted January 12, 2005 If you want a window with no minumum size: #comments-start Information about window style $WS_POPUPWINDOW = 0x80880000 $WS_VISIBLE = 0x10000000 $WS_DISABLED = 0x08000000 $WS_CLIPSIBLINGS = 0x04000000 $WS_DLGFRAME = 0x00400000 $WS_THICKFRAME = 0x00040000 $WS_GROUP = 0x00020000 #comments-end $window = GuiCreate("Example", 1, 1, -99999, -99999, 0x94CE0000) GuiSetState(@SW_SHOW);window would lose resizability if I called WinMove before GuiSetState WinMove($window,"", 290, @DesktopHeight/2-175, 400,350) ;initial size of window While GuiGetMsg() <> -3 WEnd Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Angel Posted January 13, 2005 Posted January 13, 2005 I guess that what he'd like is a GUI were the items "auto-resize" when you resize the window. I don't think that that is currently possible without a lot of AutoIt code. Please correct me if I'm wrong! :"> Angel
jpm Posted January 13, 2005 Posted January 13, 2005 I guess that what he'd like is a GUI were the items "auto-resize" when you resize the window. I don't think that that is currently possible without a lot of AutoIt code. Please correct me if I'm wrong! :"> Angel<{POST_SNAPBACK}>The GUICtrlSetResizing is designed for that.Does this example is to much
Angel Posted January 13, 2005 Posted January 13, 2005 The GUICtrlSetResizing is designed for that.Does this example is to much <{POST_SNAPBACK}>WOW! That's so cool! I did not know about this!Cheers,Angel
lyledg Posted January 13, 2005 Author Posted January 13, 2005 Thanks Guys, you have answered my questions...
jpm Posted January 13, 2005 Posted January 13, 2005 Thanks Guys, you have answered my questions...<{POST_SNAPBACK}>You welcome ("de rien" in french)
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