cal Posted January 18, 2007 Share Posted January 18, 2007 I've been around for awhile but I am new to making GUI stuff. I started playing around with Koda yesterday. I believe I am seeing a bug but I figured I'd ask first since It may just be me. I have not seen it mentioned. I created several forms with various things in them and noticed that not all the kfx files are being saved. try the following steps. - make a change in form 1, don't hit save. - click on form 2 and make another change. This time hit save. - click back to form 1. The change I made to it is still there. It looks like all was saved as the save button becomes grayed out regardless of what form I now click on. If however, I now exit koda and come back in then I find form 1 was unsaved. It seems I need to hit the save button before clicking on any other form. Is this the expected behavior? I'm using ver 1.6.0.2 that comes as part of the current Scite. Link to comment Share on other sites More sharing options...
Lazycat Posted January 19, 2007 Author Share Posted January 19, 2007 It looks like all was saved as the save button becomes grayed out regardless of what form I now click on. If however, I now exit koda and come back in then I find form 1 was unsaved.It seems I need to hit the save button before clicking on any other form. Is this the expected behavior?I'm using ver 1.6.0.2 that comes as part of the current Scite.Indeed, save button should be ungrayed when switching back to unsaved form 1, this is bug. But when you trying to close Koda while some form remain unsaved, Koda should prompt you about saving changes. You was prompted? Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
Lazycat Posted January 19, 2007 Author Share Posted January 19, 2007 The second incarnation of Au3ToKoda tool is ready. Improved quality, stability etc - all as usually Now it on "beta" stage. Test results on real scripts are always welcome.http://www.autoitscript.com/fileman/users/Lazycat/Au3toKoda.zip Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
cal Posted January 19, 2007 Share Posted January 19, 2007 Indeed, save button should be ungrayed when switching back to unsaved form 1, this is bug. But when you trying to close Koda while some form remain unsaved, Koda should prompt you about saving changes. You was prompted?No, I am not getting a prompt telling me anything when I exit. Link to comment Share on other sites More sharing options...
Zedna Posted January 20, 2007 Share Posted January 20, 2007 The second incarnation of Au3ToKoda tool is ready. Improved quality, stability etc - all as usually Now it on "beta" stage. Test results on real scripts are always welcome.http://www.autoitscript.com/fileman/users/Lazycat/Au3toKoda.zipGreat!!Results from first stage of testing:1) In limitation should be noted: Opt("GUIOnEventMode",1) see about_hyperlink.au32) GUISetBkColor(0x000000) is missing see Cerna.au33) $rb_sql_vse = GUICtrlCreateRadio("VÅ¡e", 32, 108, 49, 17, BitOR($BS_AUTORADIOBUTTON,$WS_TABSTOP)) GUICtrlSetState(-1, $GUI_CHECKED) --> Warning unknown property "Checked" in control rb_sql_vse see Email_zak.au34) $Form1 = GUICreate("Hromadné emaily zákaznÃkům", 475, 636, -1, -1) after conversion (changed width/height of main form): $Form1 = GUICreate("Hromadné emaily zákaznÃkům", 460, 618, -1, -1) see Email_zak.au3 also in other scripts Resources UDF  ResourcesEx UDF  AutoIt Forum Search Link to comment Share on other sites More sharing options...
Lazycat Posted January 22, 2007 Author Share Posted January 22, 2007 No, I am not getting a prompt telling me anything when I exit.I'm can't represent this... If you can write surely representable step-by-step instruction - that would be great.1) In limitation should be noted: Opt("GUIOnEventMode",1) see about_hyperlink.au32) GUISetBkColor(0x000000) is missing see Cerna.au33) $rb_sql_vse = GUICtrlCreateRadio("VÅ¡e", 32, 108, 49, 17, BitOR($BS_AUTORADIOBUTTON,$WS_TABSTOP)) GUICtrlSetState(-1, $GUI_CHECKED) --> Warning unknown property "Checked" in control rb_sql_vse see Email_zak.au34) $Form1 = GUICreate("Hromadné emaily zákaznÃkům", 475, 636, -1, -1) after conversion (changed width/height of main form): $Form1 = GUICreate("Hromadné emaily zákaznÃkům", 460, 618, -1, -1) see Email_zak.au3 also in other scripts1) Yes, indeed.2) Fixed.3) Doh, whole GUISet* parameters parsing was broken. Fixed.4) Seems this solved, but still have little difference - probably Koda bug. Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
eltorro Posted January 22, 2007 Share Posted January 22, 2007 Link on first post point to Koda home page, dowload link on home page points to ver 1.6.0.2. Sept 06. Where is link to most current version?? eltorro Regards, [indent]ElTorro[/indent][font="Book"] Decide, Commit, Achieve[/font]_ConfigIO.au3Language Translation --uses Google(tm) MsgBox Move XML wrapper UDF XML2TreeView Zip functionality Split your GUI Save Print ScreenZipPluginEdit In Place listviewSome of my scripts on Google code Link to comment Share on other sites More sharing options...
Lazycat Posted January 23, 2007 Author Share Posted January 23, 2007 Link on first post point to Koda home page, dowload link on home page points to ver 1.6.0.2. Sept 06.Where is link to most current version??eltorro1.6.0.2 - the most current atm. Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
Paulie Posted January 23, 2007 Share Posted January 23, 2007 1.6.0.2 - the most current atm.Is it possible to "group" controls?So i can make both input and a label and drag them at the same time?I'm sorry if this feature already exists, I'm at school and dont have access to koda atm.Thanks Link to comment Share on other sites More sharing options...
sandyd Posted January 23, 2007 Share Posted January 23, 2007 Hi Paulie, try this $Group2 = GUICtrlCreateGroup("", 32, 48, 201, 57) GUICtrlCreateLabel("ALabel1", 48, 72, 43, 17) $Input1 = GUICtrlCreateInput("AInput1", 96, 70, 121, 21) GUICtrlCreateGroup("", -99, -99, 1, 1) ----[ SandyD ]--- Link to comment Share on other sites More sharing options...
Zedna Posted January 23, 2007 Share Posted January 23, 2007 Is it possible to "group" controls?So i can make both input and a label and drag them at the same time?I'm sorry if this feature already exists, I'm at school and dont have access to koda atm.ThanksYou can select more controls by holding Shift key. In object treeview you can check which controls are selected.Then you can normaly move all selected controls. Resources UDF Â ResourcesEx UDF Â AutoIt Forum Search Link to comment Share on other sites More sharing options...
condoman Posted February 9, 2007 Share Posted February 9, 2007 I have started to use KODA converting some older non GUI scripts to GUI. A few things that don't make sense. 1. You can't paste into a property. There should be some way to allow that. 2. When you put a variable as the as the property KODA always wants to quote it. Would it be hard to not quote when the property starts with $? 3. In KODA there should be one icon that will save the kfx file, update the script and exit KODA. It would make tool switching easier. 4. On launch of KODA from SciTE your script should be saved first, otherwise changes will fall off when KODA reloads the script. 5. When you select multiple objects to move there is no indication anything is selected. Thanks for the great work on this fantastic utility. Link to comment Share on other sites More sharing options...
Euler G. Posted February 13, 2007 Share Posted February 13, 2007 Hello folks,Updated my http://www.autoitscript.com/fileman/index.php?act=list&op=get&target=koda_language_files%2Flang_bra.zip translation for Koda 1.6.0.2 (after a looong time). File available from File Manager: http://www.autoitscript.com/fileman/index.php?act=list&op=get&target=koda_language_files%2Flang_bra.zip (6.05KB). Please, report any problems. Best, Euler Link to comment Share on other sites More sharing options...
Lazycat Posted February 16, 2007 Author Share Posted February 16, 2007 1. You can't paste into a property. There should be some way to allow that.Shift+Insert or context menus worked all the time... Ctrl+V didn't work though, not noticed it because I'm not use this combination...2. When you put a variable as the as the property KODA always wants to quote it. Would it be hard to not quote when the property starts with $?Use %variable% record in the property and enable "Expand %var% variables..." in the options or while advanced generation.3. In KODA there should be one icon that will save the kfx file, update the script and exit KODA. It would make tool switching easier.I'm think before about option, that allow "merge" those actions, but still undecided.4. On launch of KODA from SciTE your script should be saved first, otherwise changes will fall off when KODA reloads the script.This is not Koda related request 5. When you select multiple objects to move there is no indication anything is selected.Yes, this known issue, not solved yet. Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
Lazycat Posted February 16, 2007 Author Share Posted February 16, 2007 Hello folks,Updated my http://www.autoitscript.com/fileman/index.php?act=list&op=get&target=koda_language_files%2Flang_bra.zip translation for Koda 1.6.0.2 (after a looong time). File available from File Manager: http://www.autoitscript.com/fileman/index.php?act=list&op=get&target=koda_language_files%2Flang_bra.zip (6.05KB). Please, report any problems.Thank you, will update file. Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
SlimShady Posted February 28, 2007 Share Posted February 28, 2007 1.6.0.2 - the most current atm.is there a new version coming? Link to comment Share on other sites More sharing options...
Gene Posted February 28, 2007 Share Posted February 28, 2007 (edited) Hi,I'm using Koda Ver 1.6.0.2 I used Save As to save my project when I started. Now I've done quite a bit of work and when I try to Save or Save As, I get the error below. I've already written off this work. Hope to hear from you soon. Gene>>>>>>>>>>>> Window Details <<<<<<<<<<<<< Title: Koda FormDesigner Class: #32770 Size: X: 335 Y: 366 W: 489 H: 126 >>>>>>>>>>> Mouse Details <<<<<<<<<<< Screen: X: 645 Y: 387 Cursor ID: 2 >>>>>>>>>>> Pixel Color Under Mouse <<<<<<<<<<< RGB: Hex: 0x026AFE Dec: 158462 >>>>>>>>>>> Control Under Mouse <<<<<<<<<<< Size: Control ID: ClassNameNN: Text: >>>>>>>>>>> Status Bar Text <<<<<<<<<<< >>>>>>>>>>> Visible Window Text <<<<<<<<<<< OK Access violation at address 00403B00 in module 'FD.exe'. Read of address FFFFFFDD. >>>>>>>>>>> Hidden Window Text <<<<<<<<<<<{Edit Mar 3, 2007} I have used it again gingerly once since the error above, saving about every 2 minutes. The error did not repeat. I didn't finish the GUI and haven't had s chance to work on it today. Edited March 3, 2007 by Gene [font="Verdana"]Thanks for the response.Gene[/font]Yes, I know the punctuation is not right... Link to comment Share on other sites More sharing options...
Gene Posted March 8, 2007 Share Posted March 8, 2007 Is Koda supposed to generate Event UDFs for Menu events (in event mode)? Gene [font="Verdana"]Thanks for the response.Gene[/font]Yes, I know the punctuation is not right... Link to comment Share on other sites More sharing options...
Lazycat Posted March 12, 2007 Author Share Posted March 12, 2007 I used Save As to save my project when I started. Now I've done quite a bit of work and when I try to Save or Save As, I get the error below. I've already written off this work. Hope to hear from you soon. {Edit Mar 3, 2007} I have used it again gingerly once since the error above, saving about every 2 minutes. The error did not repeat. I didn't finish the GUI and haven't had s chance to work on it today.Seems you second who report this strange error. But I'm still can't reproduce it, though intensively worked with about 7 or 8 gui's last time...Is Koda supposed to generate Event UDFs for Menu events (in event mode)?Not yet... Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
Lazycat Posted April 9, 2007 Author Share Posted April 9, 2007 After long period of silence here a new beta version Internal commands code was rewritten and centralized, used more nice and neat menu and toolbar. Now toolbars are customizable, user allowed to use up to 5 toobars and virtually any Koda command on the toolbar. Also added align palette and fixed problem with missed onEvent ability for menu items and number of other small bugs.http://www.autoitscript.com/fileman/users/lookfar/koda_2007.04.09.zip Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) 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