AlanR Posted March 2, 2007 Posted March 2, 2007 In VB I am able to resize a window without having the controls resize or reposition. I use this to effectively exclude controls in certain views. For instance, a "More" button might increase the GUI window height, revealing controls that are "cropped off" in normal view. Then the same button, now labelled "Less" will restore the window to its original size and hide those extra controls. I can't for the life of me achieve the same effect in AutoIt. I need to first capture the GUI metrics, since the user might have dragged it. Can anybody help please? Alan
MrCreatoR Posted March 2, 2007 Posted March 2, 2007 Look in help file for GUICtrlSetResizing. Reveal hidden contents Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1 AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ================================================== AutoIt is simple, subtle, elegant. © AutoIt Team
AlanR Posted March 2, 2007 Author Posted March 2, 2007 OK, I've tried using 802 as the GUICtrlSetResizing parameter. I guess I have to do this on a per control basis. It seems to have the right effect, but there's something screwy with the resizing: #include <GUIConstants.au3> ; == GUI generated with Koda == $frmTest = GUICreate("frmTest", 377, 143, 192, 125);whlt $Button1 = GUICtrlCreateButton("Smaller", 16, 16, 57, 25) GUICtrlSetResizing($Button1, 802) GUICtrlCreateLabel("ALabel1", 104, 48, 43, 17) $Input1 = GUICtrlCreateInput("AInput1", 104, 80, 201, 21, -1, $WS_EX_CLIENTEDGE) GUICtrlSetResizing($Input1, 802) GUISetState(@SW_SHOW) $big=0 While 1 $msg = GuiGetMsg() Select Case $msg = $Button1 if $big = 0 Then WinMove($frmTest, 192, 125, 377, 143);xywh $big = 1 GUICtrlSetData($Button1, "Smaller") Else WinMove($frmTest, 192, 125, 98, 55) $big = 0 GUICtrlSetData($Button1, "Bigger") EndIf Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd Exit The top left is meant to stay put but it doesn't and the resizing is not what it looked like in Koda. I must be doing something wrong with WinMove, but can't figure out what. Alan
midlander Posted July 10, 2007 Posted July 10, 2007 I'm having the same problem. I wan't my GUI to behave like most Windows programs seem to - that the user can resize the main window without the individual controls moving or resizing. I've tried using 802 as the GUICtrlSetResizing parameter as well. And 870. And most other combinations. I'm sure I've missed something...
smashly Posted July 11, 2007 Posted July 11, 2007 Quote The top left is meant to stay put but it doesn't and the resizing is not what it looked like in Koda. I must be doing something wrong with WinMove, but can't figure out what.Hi, Yep GUICtrlSetResizing() is needed for each control as you said. You've left out a parameter in the winmove() function, if your not needing the window text parameter then null it with "" WinMove($frmTest, "", 192, 125, 377, 143) Cheers
Zedna Posted July 11, 2007 Posted July 11, 2007 As smashly said. Here is corrected example: #include <GUIConstants.au3> $frmTest = GUICreate("frmTest", 377, 143);whlt $Button1 = GUICtrlCreateButton("Smaller", 16, 16, 57, 25) GUICtrlSetResizing(-1, $GUI_DOCKALL) GUICtrlCreateLabel("ALabel1", 104, 48, 43, 17) GUICtrlSetResizing(-1, $GUI_DOCKALL) $Input1 = GUICtrlCreateInput("AInput1", 104, 80, 201, 21, -1, $WS_EX_CLIENTEDGE) GUICtrlSetResizing(-1, $GUI_DOCKALL) GUISetState(@SW_SHOW) $big=1 While 1 $msg = GuiGetMsg() Select Case $msg = $Button1 if $big = 0 Then WinMove($frmTest, '', Default, Default, 377, 143);xywh $big = 1 GUICtrlSetData($Button1, "Smaller") Else WinMove($frmTest, '', Default, Default, 192, 125) $big = 0 GUICtrlSetData($Button1, "Bigger") EndIf Case $msg = $GUI_EVENT_CLOSE ExitLoop EndSelect WEnd Resources UDF ResourcesEx UDF AutoIt Forum Search
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