Jump to content

Opt("GUIResizeMode",$GUI_DOCKALL) Doesn't Seem To Work?


Recommended Posts

I seem to be finding that Opt("GUIResizeMode",$GUI_DOCKALL) doesn't work as I'd expect it.  I would have assumed that this option would cause the default of all created window controls to be $GUI_DOCKALL (no moving).

What I've found is that I still have to use GUICtrlSetResizing($hwnd, $GUI_DOCKALL) to all of the controls on my windows, individually.  Otherwise they move when the window size is changed.

Am I using it incorrectly?

Link to comment
Share on other sites

  • Moderators

SlowCoder74,

 

Am I using it incorrectly?

It sounds as if you are. Please post a reproducer script - perhaps just the GUI creation code from the script you are using - so we can take a look. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

SlowCoder74,

If you cannot see the problem, post the whole thing and we can take a look too. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • 3 months later...

Returning to this after a while ...

I was able to reproduce the problem.  It appears to be related to moving/resizing using ControlMove.

The code below creates an input control of a certain size/location.

ControlMove moves and resizes the control.

If you minimize and restore the window, you'll see that the control has reverted to it's original size/location.

I'm using AutoIt 3.3.10.2

Update: More testing shows that if I add GUICtrlSetResizing($Input1, $GUI_DOCKALL) AFTER the ControlMove it will retain the new size/location.

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>

Opt("GUIResizeMode",$GUI_DOCKALL) ;prevent moving of controls when resizing window

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 231, 182, 309, 270)
$Input1 = GUICtrlCreateInput("Input1", 8, 8, 145, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

ControlMove($Form1,"",$Input1,16,16,150,30)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd





Edited by SlowCoder74
Link to comment
Share on other sites

The thing with custom GUI toolkits or whatever you wanna call what GUICtrl* is, is that there are a lot of things going on in the background to support making your life easier. And that background stuff may not work correctly when you skip the purpose-built functions (GUICtrlSet*) and go straight for the generic (Control*) ones.

Case in point, when you use GUICtrlSetPos() it doesn't revert to the original position.

Edited by AdmiralClaws
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...