Jump to content

Recommended Posts

Posted

Hello to all.

My name is Daniel, I am original of the Argentina and 9 months ago about that development in Autoit, after having passed through other languages type Basic

I found a model of development which adapts to my tastes and I am comfortable, but my performance to generate new applications was slow due to the lack of GUI Builder.

I found a model of development which adapts to my tastes and I am comfortable, but my performance to build new applications was slow due to lack of a generator of GUI.

This situation led me to find a project open-source which adapted to my needs.

Review several of the programs appointed by TheSaint, opting to improve and complete 'GuiBuilder Resurrected' publish by baroquebob; when I did was not (or not view the GUIBuilderNxt update by jaberwacky). Below I dedicate some paragraph to this.

Also probe (and I was surprised) with Koda , but they are not open-source. (the ISN Studio is super , but very complex for my)

Well, here I leave you the link to download, I do so with the idea that you can use it, give me your opinion and help me improve it.

Equally here leave you a list of characteristics, all the changes were designed and implemented in a way that respects the job before made by CyberSlug, Roy, TheSaint and Bob ; without radical changes continuing what they started.

* New control 'Pick color'
* New properties 'Backgroud Color' and 'Style'
* New Functions Export file (.au3) and 'Test'
* Other function not finalizated.Yet
* Improve Documentation.

Wait for your comments...

 

Regards Daniel

guibuilder_0.9.3.zip

Posted

:D

Thanks for sharing. 

 

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 (edited)

@DFerrato When you mention about @jaberwacky and his work on this project, you should could make a link to this thread:

Just as a references. EDIT: Oops Now I see you not continue @jaberwacky work, as a base to your work, you use older version :(

 

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

@DFerrato
You should start using TIDY
 

  Quote

"C:\Users\Michał\Downloads\guibuilder_0.9.3\Publicado\subrutinas\conexion_db.au3"(48,24) : error: missing separator character before keyword.
Func query($hDB,$query,byref
~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\Michał\Downloads\guibuilder_0.9.3\Publicado\subrutinas\conexion_db.au3"(280,21) : error: missing separator character before keyword.
func dbprep4($clave,byref
~~~~~~~~~~~~~~~~~~~~^
 

Expand  

Which AutoIt and also SciTE4AutoIt version you are usinng ?

 

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

Very much like the enthusiasm resurrecting this project.  However, many of the controls are greyed out and unavailable (menu, context menu, updown, and tab).  Why is this?  Also, I didn't see a button for "label" control anywhere

Posted

I mean that:
this line:

Func query($hDB,$query,ByRef $result)

Should look like:

Func query($hDB, $query, ByRef $result)

I also mean that I guest You are using SciTE Lite.

Please try to download:
https://www.autoitscript.com/site/autoit-script-editor/downloads/

 

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 8/11/2016 at 8:33 PM, mLipok said:

@DFerrato
You should start using TIDY
 

Which AutoIt and also SciTE4AutoIt version you are usinng ?

Expand  

Thanks @mLipok for your sugerence, the start from TiDy.

In routine "C:\Users\Michał\Downloads\guibuilder_0.9.3\Publicado\subrutinas\conexion_db.au3" lines 48 and 240 trail of replace ,byref for ", byref" , Should work well .

And yes im used "SciTE-Lite Version 3.3.6  by Neil Hodgson. " Updated by Jos for autoit, thanks for your sugerence..

Regards

Posted
  On 8/11/2016 at 9:57 PM, MattHiggs said:

Very much like the enthusiasm resurrecting this project.  However, many of the controls are greyed out and unavailable (menu, context menu, updown, and tab).  Why is this?  Also, I didn't see a button for "label" control anywhere

Expand  

MattHiggs, is because even lacks work..

If you want these invited to complete the unfinished controls. For me it is important to have a program adapted to the needs of each one of us.

Regards daniel

Posted (edited)
  On 8/11/2016 at 2:34 PM, DFerrato said:

* New control 'Pick color'

Expand  
$ColorChooser_1 = GuiCtrlCreateButton("", 90, 140, 90, 20,-1)
GUICtrlSetBkColor(-1,8421504)

If you could make the color show as hex, that'd be nice.
 

$msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop

If you could use Switch instead of Select, that'd be nice too.
And if the code that comes out, would come out Proper Cased and TIDYed,  that'd be nice too.
 

https://www.autoitscript.com/wiki/Best_coding_practices#Names_of_Variables is a good read.

Edited by argumentum

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Posted
  On 8/12/2016 at 6:41 PM, argumentum said:
$ColorChooser_1 = GuiCtrlCreateButton("", 90, 140, 90, 20,-1)
GUICtrlSetBkColor(-1,8421504)

If you could make the color show as hex, that'd be nice.
 

$msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop

If you could use Switch instead of Select, that'd be nice too.
And if the code that comes out, would come out Proper Cased and TIDYed,  that'd be nice too.
 

https://www.autoitscript.com/wiki/Best_coding_practices#Names_of_Variables is a good read.

Expand  

Thanks argumentum by your corrections and suggestions

 

 

Daniel

  • 2 years later...
Posted

Looks and sounds good. I will have a play. :)

Thanks for sharing.

I will add it to the history list.

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
  On 5/29/2019 at 8:06 PM, Exit said:

Or better use

https://translate.google.de/#view=home&op=translate&sl=es&tl=en

since your link does not point to

 https://traductor.babylon-software.com/espanol/a-ingles/

Instead it points to this thread. Just try it.

 

Expand  

Hello Exit

Thank you for your suggestion.

What I wanted to mean is that some wrong word in English or syntax error will find in my essays.

Apologies for my bad English

By the way, any comments on the program?

1396888634_BadEnglish.jpg.9dbaa9dc83c34083656ea2a47ec8c422.jpg

Regards Daniel.
 

  • 2 months later...
  • 4 weeks later...
Posted
  On 8/11/2019 at 7:18 PM, OldGuyWalking said:

@DFerrato - Thank you for re-starting the development.  I will look at the application.

There is no need to apologize for "bad" English.   I never do. (It is a joke)  🤪

OldGuyWalking

Expand  

@OldGuyWalking thanks for your comment.

My intention in publishing the development carried out, was not to talk about the English language.

Was to assist the rest by giving them an extensible GUIBUILDER and receive the guidance, help and ideas of the people of the forum to finalize it.

But sometimes the way to communicate weighs more than the ideas that one expresses. 😃

Regards Daniel

  • 3 weeks later...
Posted

Seems a good update @DFerrato :) 
download seems to be broken , got this error message when I tried to unzip the file :
Untitled.thumb.png.15d231ee587ecd640437ffe1a1290b3c.png

 

Seems all the file's in the zip give this unspecified error if you push Skip.....

as finishing touch god created the dutch

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