Jump to content

Recommended Posts

Posted (edited)

Windows 7
I go to work. I'll back later.

EDIT:

I checked and all looks normal, I notice that last one I run exe directly from ZIP archives

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

I found what is the issue with TAB

This is code generated by GUIBuilderNxt

; Script generated by GUIBuilderNxt Prototype 1.0

#include <Constants.au3>
#include <GUIConstantsEx.au3>
#include <Misc.au3>
#include <WindowsConstants.au3>

Const $style = BitOR($WS_OVERLAPPED, $WS_CAPTION, $WS_SYSMENU, $WS_VISIBLE, $WS_CLIPSIBLINGS, $WS_MINIMIZEBOX)

Global $h_main = GuiCreate("GuiBuilderNxt", 398, 329, -1, -1, $style)

Global $Tab_0 = GuiCtrlCreateTab("Tab1", 10, 10, 150, 150)

GuiSetState(@SW_SHOWNORMAL)

Do
    Switch GuiGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop

        Case Else
            ;
    EndSwitch
Until False

but it should look that

; Script generated by GUIBuilderNxt Prototype 1.0

#include <Constants.au3>
#include <GUIConstantsEx.au3>
#include <Misc.au3>
#include <WindowsConstants.au3>

Const $style = BitOR($WS_OVERLAPPED, $WS_CAPTION, $WS_SYSMENU, $WS_VISIBLE, $WS_CLIPSIBLINGS, $WS_MINIMIZEBOX)

Global $h_main = GuiCreate("GuiBuilderNxt", 398, 329, -1, -1, $style)

Global $Tab = GuiCtrlCreateTab(10, 10, 150, 150)
Global $Tab_0 = GUICtrlCreateTabItem("Tab1")
GUICtrlCreateTabItem("") ; end tabitem definition

GuiSetState(@SW_SHOWNORMAL)

Do
    Switch GuiGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop

        Case Else
            ;
    EndSwitch
Until False

summary:

;bad
Global $Tab_0 = GuiCtrlCreateTab("Tab1", 10, 10, 150, 150)


;good
Global $Tab = GuiCtrlCreateTab(10, 10, 150, 150)
Global $Tab_0 = GUICtrlCreateTabItem("Tab1")
GUICtrlCreateTabItem("") ; end tabitem definition

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

I have a while to go into the depths of your code.
You have opened my eyes and I see ... the power of Maps.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 2/6/2015 at 8:44 PM, jaberwacky said:

That explains why it's off the screen?

 

??

 

btw.

you not used 

#EndRegion

for

#Region ; View

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

so you should end au3 file with #EndRegion to close this #region

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

I gather you are not going ahead with the idea of putting the Properties fields on the bottom portion of the Controls window, so that you get rid of all the extra clicks and lose the third window? A real shame from my point of view. Have you tried, to see how it would look and fit?

Make sure brain is in gear before opening mouth!
Remember, what is not said, can be just as important as what is said.

  Reveal hidden contents

I may have the Artistic Liesense ;) to disagree with you. TheSaint's Toolbox (be advised many downloads are not working due to ISP screwup with my storage)

userbar.png

Posted

Latest update.  See >OP for details.

@TheSaint

I have not worked on the properties window yet.  I have a few minor features that I want to crank out here and there and some thinking on how to best display the properties.

Posted (edited)

Please update OP about required Au3 release.

Edit:

You are mention about latest AutoIt release but latest beta is needed.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  Quote

 

This is an update to GuiBuilder (CyberSlug, Roy, TheSaint, and many others) to run on the latest AutoIt release.

This still can cause confusion.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

btw.

This project is a great example and also test for the "map" beta feature.

By analyzing your code, I learned a lot.

Thanks for that.

mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 2/10/2015 at 9:16 AM, mLipok said:

This still can cause confusion.

Ohhhh, I see what you mean now.

 

  On 2/10/2015 at 9:21 AM, mLipok said:

btw.

This project is a great example and also test for the "map" beta feature.

By analyzing your code, I learned a lot.

Thanks for that.

mLipok

Nice!

Posted (edited)

Bug:

go to the Tab "State"

Checkbox have wrong coordinates

FRequest:

I add button .

Why in "Choose control type" window  focus automatically back to "Arrow Button"

Usually I want to add few the same control types.

FRequest:

I added few buttons before.
Now I click them with LMB DoubleClick
Can this DoubleClick Move focuse to Tab "Main" to edit "Text"
 
 

FRequest:

When I select controls can this all controls be highlighted or just changed BackGround Color ?
When control will be deselected then BackGround Color can back to defult or users color.
It will be useful especially in the case of multi selection.
 
 
 
btw.
A good job.
 
Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

Thanks for the bug request.  I'll get on that.

As far as selecting the cursor automatically, I have wondered about that.  I will either disable that or make it an option.  Don't know yet.

  Quote

 

FRequest:

I added few buttons before.
Now I click them with LMB DoubleClick
Can this DoubleClick Move focuse to Tab "Main" to edit "Text"

 

Not sure what you're asking here.
 
As far as changing the color of the selected controls, I can make them change but don't know how to make them go back to default when they are no longer selected.

 

  On 2/13/2015 at 9:50 PM, mLipok said:
A good job.

Thanks!

Edited by jaberwacky

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
×
×
  • Create New...