DaLiMan Posted March 29, 2005 Share Posted March 29, 2005 I'm loving it ! Link to comment Share on other sites More sharing options...
gcriaco Posted April 6, 2005 Author Share Posted April 6, 2005 CodeWizard v. 1.3 released. ChangeLog: 1.3 - 1/4/2005 - Added: SplashImageOn code generator - Changed: MsgBox generated code: Dim $iMsgBoxAnswer => If Not IsDeclared("iMsgBoxAnswer") Then Dim $iMsgBoxAnswer (thanks to gafrost) - Changed: InputBox generated code: Dim $iInputBoxAnswer => If Not IsDeclared("iInputBoxAnswer") Then Dim $iInputBoxAnswer (thanks to gafrost) Please leave your comments/suggestions/bugreports. Scite users: extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder. Peppe Link to comment Share on other sites More sharing options...
GaryFrost Posted April 6, 2005 Share Posted April 6, 2005 (edited) Two small problems with creating the code with CodeWizard 1: if double quotes are used, preview works fine, but code is generated incorrectly 2: (suggestion) if line is blank puts an empty string in the code, can we leave out blank lines, crlf's are ok. Examples below #Region --- CodeWizard generated code Start --- ;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=None MsgBox(0,"A MessageBox","This is a "test"" & @CRLF & "" & @CRLF & "This is only a "test"") #EndRegion --- CodeWizard generated code End --- #Region --- CodeWizard generated code Start --- ;InputBox features: Title=Yes, Prompt=Yes, Default Text=No If Not IsDeclared("iInputBoxAnswer") Then Dim $iInputBoxAnswer $iInputBoxAnswer = InputBox("A Input Box","This is a "test"" & @CRLF & "" & @CRLF & "This is only a "test"",""," ","-1","-1","-1","-1") Select Case @Error = 0;OK - The string returned is valid Case @Error = 1;The Cancel button was pushed Case @Error = 3;The InputBox failed to open EndSelect #EndRegion --- CodeWizard generated code End --- #Region --- CodeWizard generated code Start --- ;SpashText features: Title=Yes, Text=Yes, Center justified text, OS default font SplashTextOn("Splash Text","This is a "test"" & @CRLF & "" & @CRLF & "This is only a "test"","-1","-1","-1","-1",2,"","","") #EndRegion --- CodeWizard generated code End --- Edited April 6, 2005 by gafrost SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference.  Link to comment Share on other sites More sharing options...
gcriaco Posted April 6, 2005 Author Share Posted April 6, 2005 2: (suggestion) if line is blank puts an empty string in the code, can we leave out blank lines, crlf's are ok. What do you mean exactly? Link to comment Share on other sites More sharing options...
GaryFrost Posted April 6, 2005 Share Posted April 6, 2005 look in previous post, you'll see in each example I hit enter 2 times, this places @CRLF & "" & @CRLF in the code if the line is blank all that is needed is @CRLF & @CRLF just a suggestion, not a problem SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference.  Link to comment Share on other sites More sharing options...
gcriaco Posted April 15, 2005 Author Share Posted April 15, 2005 CodeWizard v. 1.3.1 released. ChangeLog: 1.3.1 - 11/4/2005 - Fixed: If double quotes were used in Titles, code was generated incorrectly (thanks to gafrost) Exceptions: *strange* use of double/single quotes - i.e. Title: "CodeWizard'. No corrections to Texts (too lazy ;-) - Changed: no more blank lines in Text fields => empty string in the code (thanks to gafrost) - i.e.: MsgBox(0,"CodeWizard","1st line" & @CRLF & "" & @CRLF & "3d line") => MsgBox(0,"CodeWizard","1st line" & @CRLF & @CRLF & "3d line") - Added: MessageBox Constants "$IDTRYAGAIN" and "$IDCONTINUE" to the Copy function TODO list (just if some of you think it's interesting): - Options function (default options, code indentation, remember last data,...) The last one could be useful if you add several msgbox/inputbox with similar data (title, default text,... to your script Please leave your comments/suggestions/bugreports. Scite users: extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder. Peppe Link to comment Share on other sites More sharing options...
stev379 Posted April 15, 2005 Share Posted April 15, 2005 CodeWizard is outstanding. Thanks for providing the code as well. I've learned much from it. I think the tool tips for the "information" and "question" icons are swapped. Thanks for a great tool to be used often. Link to comment Share on other sites More sharing options...
gcriaco Posted May 13, 2005 Author Share Posted May 13, 2005 (edited) CodeWizard v. 1.4 released. The project now merges CFCCodeWizard by Gary Frost with CodeWizard (thanks Gary). ChangeLog: - Added: CFCCodeWizard merged with CodeWizard - Changed: No longer need external dll for setting fonts and colours. - Changed: Misc UDFs now used - Added: Helpfile Scite users: extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder. As always, comments/bugreports/insults are welcome. Peppe Edit: attachment removed Edited November 19, 2006 by gcriaco Link to comment Share on other sites More sharing options...
AntiVirusGuy Posted May 17, 2005 Share Posted May 17, 2005 yes demo of the gui but no complete code with out come for a beginer like meCodeWizard v. 1.3.1 released.ChangeLog:1.3.1 - 11/4/2005- Fixed: If double quotes were used in Titles, code was generated incorrectly (thanks to gafrost) Â Exceptions: *strange* use of double/single quotes - i.e. Title: "CodeWizard'. No corrections to Texts (too lazy ;-)- Changed: no more blank lines in Text fields => empty string in the code (thanks to gafrost) - i.e.: Â MsgBox(0,"CodeWizard","1st line" & @CRLF & "" & @CRLF & "3d line") => MsgBox(0,"CodeWizard","1st line" & @CRLF & @CRLF & "3d line")- Added: MessageBox Constants "$IDTRYAGAIN" and "$IDCONTINUE" to the Copy functionTODO list (just if some of you think it's interesting): - Options function (default options, code indentation, remember last data,...)The last one could be useful if you add several msgbox/inputbox with similar data (title, default text,... to your scriptPlease leave your comments/suggestions/bugreports.Scite users:extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder.Peppe<{POST_SNAPBACK}> Link to comment Share on other sites More sharing options...
quick_sliver007 Posted May 19, 2005 Share Posted May 19, 2005 CodeWizard v. 1.4 released.The project now merges CFCCodeWizard by Gary Frost with CodeWizard (thanks Gary).ChangeLog:- Added: CFCCodeWizard merged with CodeWizard- Changed: No longer need external dll for setting fonts and colours.- Changed: Misc UDFs now used- Added: HelpfileScite users:extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder.As always, comments/bugreports/insults are welcome.Peppe<{POST_SNAPBACK}>Great script. I was just think that this and the GUI builder cold be tied togather. You may want to get with the author of the GUI builder and see if you two could come up with something like Autoit studio. Kinda like the tool Microsoft Visual Basic 6.0, but for autoit instead. . Link to comment Share on other sites More sharing options...
gcriaco Posted May 20, 2005 Author Share Posted May 20, 2005 Great script. I was just think that this and the GUI builder cold be tied togather. You may want to get with the author of the GUI builder and see if you two could come up with something like Autoit studio. Kinda like the tool Microsoft Visual Basic 6.0, but for autoit instead.<{POST_SNAPBACK}>In my opinion the best AutoIt development environment is the SciTE4AutoIt3 editor. Actually it includes many other useful tools (Au3Info, Au3Recorder,...).I don't think it's useful merging many different tools each others. Just use SciTe... Link to comment Share on other sites More sharing options...
quick_sliver007 Posted May 21, 2005 Share Posted May 21, 2005 In my opinion the best AutoIt development environment is the SciTE4AutoIt3 editor. Actually it includes many other useful tools (Au3Info, Au3Recorder,...).I don't think it's useful merging many different tools each others. Just use SciTe...<{POST_SNAPBACK}>Then maybe this could be tied into SciTe like the GUI Builder is. Just a thought. . Link to comment Share on other sites More sharing options...
GaryFrost Posted May 21, 2005 Share Posted May 21, 2005 Already is SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference.  Link to comment Share on other sites More sharing options...
quick_sliver007 Posted May 21, 2005 Share Posted May 21, 2005 Already is<{POST_SNAPBACK}>I didn't know that. Thank you . Link to comment Share on other sites More sharing options...
GaryFrost Posted May 21, 2005 Share Posted May 21, 2005 check out jdeB's last post herehttp://www.autoitscript.com/forum/index.ph...pic=10277&st=60 SciTE for AutoItDirections for Submitting Standard UDFs  Don't argue with an idiot; people watching may not be able to tell the difference.  Link to comment Share on other sites More sharing options...
Valuater Posted May 27, 2005 Share Posted May 27, 2005 its a great program!.... i use it alot and reference to it for other people .............. keep up the good work! and thanks Link to comment Share on other sites More sharing options...
Valuater Posted June 8, 2005 Share Posted June 8, 2005 i created a "REAL NICE" keyboard in less than 20 minutes with CodeWizard.........thanks again Link to comment Share on other sites More sharing options...
autoitNOW Posted June 20, 2005 Share Posted June 20, 2005 I do think code wizard and gui builder creators should work together too. I had mentioned to cyberslug a while back, about going beyond just making the gui code. It would be nice to see it automatically generate code for event when a control like a button is pushed/clicked too or be able to add code by right clicking on a control in GUI Builder or Code wizard. I also don't think this combination of GUI tools conflicts with SciTe. There are times when you are going to want write NON-GUI code. Plus the testing, syntaxchecker, debugger, etc... is in SciTe. I think the GUI tools would simply be helping to automate code creation for the GUI portion and you would paste the code that you have created in SciTe to work on it further. An ADVOCATE for AutoIT Link to comment Share on other sites More sharing options...
gcriaco Posted December 19, 2005 Author Share Posted December 19, 2005 (edited) CodeWizard 1.5 released Changelog: 1.5 19/12/2005 - Added: ToolTip function Scite users: extract the compressed files into the %Program Files%\AutoIt3\SciTe\CodeWizard folder. Happy coding Peppe Edited December 19, 2005 by gcriaco Link to comment Share on other sites More sharing options...
Skrip Posted December 20, 2005 Share Posted December 20, 2005 For the inputbox can you make it so we can have more than 1 input line (optional selection box) [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left] Link to comment Share on other sites More sharing options...
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