Naec Posted May 6, 2023 Posted May 6, 2023 I installed GuiBuilderPlus. I have this problem: The main window is very small (200 x 480 pixels). How can I enlarge (maximize It)? I tried with Windows method, (drag and zoom - left corner menu has not maximize option) but they are not same options. I attached the extracted window from the screen. ... And excuse me my english.
Moderators Melba23 Posted May 6, 2023 Moderators Posted May 6, 2023 Moved to the appropriate forum. Moderation Team 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
pixelsearch Posted May 6, 2023 Posted May 6, 2023 Increasing the window width gives an acceptable result for the buttons, by simply adding a $WS_SIZEBOX style in GuiBuilderPlus_formMain.au3, line $hToolbar = GUICreate(...) ending with a resizable window as displayed below, which has now a width of 400 after dragging its right border The problem seems a bit harder if we increase the height, because of the lower part of the window which "contains" the formPropertyInspector. Here are its original coords as found in the script : ;create property inspector _formPropertyInspector(0, 210, $toolbar_width, 222) Let's wait for @kurtykurtyboy as he wrote the script and knows what's easily doable... or not "I think you are searching a bug where there is no bug... don't listen to bad advice."
kurtykurtyboy Posted May 6, 2023 Posted May 6, 2023 This seems more like a DPI/scaling issue.. you could try removing the line and recompiling to see if that helps. Also, you could try changing the compatibility "Change high DPI settings" by setting "Override high DPI scaling behavior. Scaling performed by: System (Enhanced)". Updating the lower section to resize itself, would be doable but might take a bit of reworking...
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