Jump to content

GUI Resizing method


AlanR
 Share

Recommended Posts

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

Link to comment
Share on other sites

Look in help file for GUICtrlSetResizing.

 

Spoiler

Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1

AutoIt_Rus_Community.png AutoIt Russian Community

My Work...

Spoiler

AutoIt_Icon_small.pngProjects: 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 Program

AutoIt_Icon_small.pngUDFs: 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
 
AutoIt_Icon_small.pngExamples: 
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 AutoIt_Rating.gif)

* === My topics === *

==================================================
My_Userbar.gif
==================================================

 

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • 4 months later...

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...

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...