lookfar Posted July 17, 2005 Posted July 17, 2005 (edited) Just added AVI control support. I'm probably spending about 2 hours on each component to port over, but have almost got all the main controls. Then I will start adding support for Database components such as ADO and perhaps DBase , then WebBrowser etc... Note: All controls now have enabled true/false option in the Object Inspector ($GUI_DISABLE) Working Controls so far: Image (with Picture editor) Listbox (with items list editor) CheckBox (with checked/unchecked state) RadioButton (with checked/unchecked state) Picture (with Picture Editor) Label ComboBox (with Items list editor) Memo/Edit (with Lines list editor) InputBox GroupBox ProgressBar ( with smooth state on/off) TrackBar (slider) DatePicker Application Icon for GUI Form ( will be used if set) SpinEdit ( Updown) Animation (Microsoft Video for Windows) active:= animation on/off Hints/ToolTips for all controls in the code generation: Let me know if I'm missing any parameters... btw: I'm Having problems converting delphi colors to AutoIt format, every Tcolor to Hex I have tried converts to a web style hex, what is the exact hex format of AutoIt colors, how did you arrive at them? anyway Have fun! Edited July 19, 2005 by lookfar Get the latest version of AutoEd and Koda FormDesigner here
quaizywabbit Posted July 17, 2005 Posted July 17, 2005 perhaps I overlooked it, but did you include a way to remove controls from the form? [u]Do more with pre-existing apps![/u]ANYGUIv2.8
lookfar Posted July 17, 2005 Author Posted July 17, 2005 (edited) perhaps I overlooked it, but did you include a way to remove controls from the form?<{POST_SNAPBACK}>for now highlight the control and press del key.sorry I haven't got around to "cut,copy,paste,select all" etc. I will do that next as it only takes a few minutes.Edit: Ok that's done now. edit menu has cut,copy etc.but most of the fine tuning of controls is done by the context menu Edited July 18, 2005 by lookfar Get the latest version of AutoEd and Koda FormDesigner here
lookfar Posted July 19, 2005 Author Posted July 19, 2005 (edited) Added support for Pictures on Buttons (Bitmap button) in object inspector set bitmap with "Glyph" Fixed "edit,cut,copy,paste" for components, can also select and copy to other forms Edited July 19, 2005 by lookfar Get the latest version of AutoEd and Koda FormDesigner here
Josbe Posted July 19, 2005 Posted July 19, 2005 Nice progress...Some observations:*Window's overlapsFor example (tested under Win2000):- Open FD- Draw a button- Click over an area out of FD (e.g. : desktop)- Click again over FD.- Click "Generate code" or "About" menuitem.Result: "Generate code" or "About" dialog is under the form.*Would be useful a "Test dialog" or "Switch" button.Keep up! • AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
lookfar Posted July 19, 2005 Author Posted July 19, 2005 Thanks for the feedback, I appreciate it ! Added : ToolTips for each control. Disabled by default, to use goto Object Inspector ShowHint = True Hint = type your hint Get the latest version of AutoEd and Koda FormDesigner here
lookfar Posted July 21, 2005 Author Posted July 21, 2005 Nice progress...Some observations:*Window's overlapsFor example (tested under Win2000):- Open FD- Draw a button- Click over an area out of FD (e.g. : desktop)- Click again over FD.- Click "Generate code" or "About" menuitem.Result: "Generate code" or "About" dialog is under the form.*Would be useful a "Test dialog" or "Switch" button.Keep up! <{POST_SNAPBACK}>Ok I fixed the problem with the forms overlapping.By "Test dialog" do you mean a quick shell out to AutoIt to run the form?If so, I will be implementing that soon. Get the latest version of AutoEd and Koda FormDesigner here
lookfar Posted July 22, 2005 Author Posted July 22, 2005 Added support for Color , use object inspector to set color. presently only the main form is active for color. according to the help file only label and progress bar can use GUICtrlSetColor so I will do those other two next. Get the latest version of AutoEd and Koda FormDesigner here
vbMark Posted July 22, 2005 Posted July 22, 2005 Lookfar, I tried your AutoEd progam and I like it alot. However, I can not get it to compile or run scripts made with the beta. Am I missing something or is this planed for the future? Thank you for this great program! vbMark
lookfar Posted July 22, 2005 Author Posted July 22, 2005 Lookfar,I tried your AutoEd progam and I like it alot. However, I can not get it to compile or run scripts made with the beta. Am I missing something or is this planed for the future?Thank you for this great program!vbMark<{POST_SNAPBACK}>goto tools| options | environment options. and confirm path to autoit.exe, what happens is the active editor lines are saved to tmp.au3 in the autoed directory and autoit runs that file. the green arrow or F9 will run it. compile has not been implemented.I stopped working on it but plan a rebuild soon. Get the latest version of AutoEd and Koda FormDesigner here
lookfar Posted July 31, 2005 Author Posted July 31, 2005 (edited) Added TreeView Control: drop a treeview on the form then use Object Inspector -> TreeNodes and you will have a visual tree designer to work with. Root Node, Root Items, Children,Subchildren ad finitum are supported. you will get generated code that looks like: $treeview = GUICtrlCreateTreeView (6,6,100,150) $generalitem = GUICtrlCreateTreeViewitem ("General",$treeview) $displayitem = GUICtrlCreateTreeViewitem ("Display",$treeview) $aboutitem = GUICtrlCreateTreeViewitem ("About",$generalitem) $compitem = GUICtrlCreateTreeViewitem ("Computer",$generalitem) $useritem = GUICtrlCreateTreeViewitem ("User",$generalitem) $resitem = GUICtrlCreateTreeViewitem ("Resolution",$displayitem) $otheritem = GUICtrlCreateTreeViewitem ("Other",$displayitem) Have Fun! btw: all controls can be moved with : Shift [up,down,right,left] arrows (fine tune shrink/grow) and Ctrl [up,down,right,left] arrows (fine tune position) Edited July 31, 2005 by lookfar Get the latest version of AutoEd and Koda FormDesigner here
midiaxe Posted August 9, 2005 Posted August 9, 2005 Lookfar, Very cool tool. I just downloaded the latest version from your website (7/11/05 version) and it looks great. One thing that I noticed when a tried loading a saved AUF file is I get an error message: "$Label1" is not a valid component name. When I clicked OK, I get a blank form. I opened the AUF file in Scite and found out that all the Name attributes have a "$" sign before the value, like: [0] Name=$Label1 Parent=Form1 I removed the $ sign and was able to open the AUF. Other than that, everything seems ok. Great too by the way! Thanks, =MX=
lookfar Posted August 10, 2005 Author Posted August 10, 2005 Lookfar,Very cool tool. I just downloaded the latest version from your website (7/11/05 version) and it looks great. One thing that I noticed when a tried loading a saved AUF file is I get an error message:"$Label1" is not a valid component name.When I clicked OK, I get a blank form. I opened the AUF file in Scite and found out that all the Name attributes have a "$" sign before the value, like:[0]Name=$Label1Parent=Form1I removed the $ sign and was able to open the AUF. Other than that, everything seems ok. Great too by the way!Thanks,=MX=<{POST_SNAPBACK}>Glad you like it. It's still a ProtoType, I haven't done much in the way of reading/loading the formsjust the basic functionality with no error checking. I 'm presently working on a new version that saves the form as a Delphi.DFM format which is a lot faster. Get the latest version of AutoEd and Koda FormDesigner here
midiaxe Posted August 10, 2005 Posted August 10, 2005 That sounds great! Let me know if you need beta testers. I'll be happy to test it. MX
bouzzi Posted October 4, 2005 Posted October 4, 2005 I love Form Designer I Use it alot....But their is a bug remaining....The .AUF when saved could not be brought back....In tne .AUF file I have a component named $Convert generated by FD...(because of button caption identified as "Convert")I've tried erasing all "$" in the .AUF file and it opens but some of the components are missing... _______________________________________[font="Arial"] Bouzzi[/font]Bouzzi@yahoo.comLive From Quebec
Lazycat Posted October 4, 2005 Posted October 4, 2005 I love Form Designer I Use it alot....But their is a bug remaining....The .AUF when saved could not be brought back....This version is not updated. You can try "sneak peak" version that have new working save/load functions, but it's still alpha. I hope new version will be soon. Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s])
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