1. RE: IDE v14 Released
- Posted by Jonas Temple <jktemple at yhti.net> Sep 14, 2002
- 463 views
Judith, I downloaded v14 of the IDE. I like the changes! Anyway, I started a new project, added a button to the form, double-clicked the button to bring up the code editor and selected SaveAs from the file menu. When I did I got: variable openFolder has not been assigned a value' And then of course, it crashed..... :( Also, I thought I remember hearing somewhere that the code editor was going to be a separate .exw file that can be ran standalone. Was I misinformed? Also also, I noticed that the properties grid changed style (edit controls, check boxes, etc.). Did you code that or incorporate from somewhere else? Just curious. Anyway, keep up the GREAT work! Jonas
2. RE: IDE v14 Released
- Posted by Judith Evans <camping at txcyber.com> Sep 15, 2002
- 443 views
Jonas Temple wrote: > Judith, > > I downloaded v14 of the IDE. I like the changes! Thanks. Many people gave me ideas for this release. > > Anyway, I started a new project, added a button to the form, > double-clicked the button to bring up the code editor and selected > SaveAs from the file menu. When I did I got: > > variable openFolder has not been assigned a value' > > And then of course, it crashed..... :( I'm very sorry. I accidentally included a version from IDE 0.15 which I am working on. I've reloaded IDE with Code Editor corrected as version 14.1 http://user.txcyber.com/~camping/judith.html Martin Stachon also sent me an updated messages translation which I have also uploaded. > > Also, I thought I remember hearing somewhere that the code editor was > going to be a separate .exw file that can be ran standalone. Was I > misinformed? Maybe. I have a companion editor offered on IDE's home page. Perhaps you are thinking of this one. The one in IDE is intertwinded with other IDE modules so can not really be stand alone. The standalone editor uses the syntax engine, written by Don Phillips, used by the IDE editor. The main difference is the standalone editor does not have the Control and Event combo. Everything else is much the same. > > Also also, I noticed that the properties grid changed style (edit > controls, check boxes, etc.). Did you code that or incorporate from > somewhere else? Just curious. Martin Stachon contributed the improved Property. You might notice his name in the IDE About Box; that's where I give credit to contributors as well as in the IDE docs. > > Anyway, keep up the GREAT work! Hope to Judith > > Jonas > >
3. RE: IDE v14 Released
- Posted by Judith Evans <camping at txcyber.com> Sep 16, 2002
- 438 views
Thanks for reporting the bug. I'll fix and upload shortly. Are you using the companion editor? If so, it needs to be in the same folder as IDE or you need to copy a lot of files from IDE to the folder you placed the editor into, one of them being IDE.cfg. In IDE Code Editor and the stand alone editor you will get problems using F1 if (1) you have not gone into IDE first and entered the location of Win32lib.htm under Menu Item Configuration/Location of Documentation [many people keep more than one version of Win32lib on their machines so I can not just grab a Win32lib.htm I find], (2) you have not copied IDE.cfg to the folder you placed editor.exw into [if not in IDE folder], (3) you recently switched to a testing version of Win32lib that splits out the htm docs into separate files and have not pointed your "location of documentation" to it instead of the old version. IDE and stand alone editor look at the revision information in Win32lib to determine what format of win2lib.htm to look for (4) there is a bug. Judging by the error message showing ///#register32Function my guess is that editor doesn't know where your copy of win32lib.htm is. If you have done all these steps then please contact me again since that means there is a logic bug somewhere. Judith petelomax at blueyonder.co.uk wrote: > On Sun, 15 Sep 2002 10:14:12 +0000, Judith Evans <camping at txcyber.com> > wrote: > > >Maybe. I have a companion editor offered on IDE's home page. > > I just loaded the new version > Line 2573 in routine synRestoreINIFile in IDE_Syntax.ew should be > if hfile !=-1 then > not > if hfile!=1 then > > Also, F1 on registerw32Function loads IE into a loop which nearly > crashes my PC. > (Cannot find 'file:///#registerw32Function' message box appears as > many times as fit in ram). > > Pete > >
4. RE: IDE v14 Released
- Posted by Judith Evans <camping at txcyber.com> Sep 16, 2002
- 481 views
Judith Evans wrote: > Thanks for reporting the bug. I'll fix and upload shortly. > http://user.txcyber.com/~camping/judith.html IDE v0.14.2 has been uploaded to fix the bug in IDE_syntax.ew: Line 2573 in routine synRestoreINIFile in IDE_Syntax.ew should be if hfile !=-1 then not if hfile!=1 then I also made a change in stand alone editor to catch missing win32lib.htm document location. [I already have that in IDE Code Editor.]
5. RE: IDE v14 Released
- Posted by rubis at fem.unicamp.br Sep 23, 2002
- 463 views
Hi Judith; I'm getting the error 12 "Create ProcessHi failed" "E:\EUPHORIA\ide14_2\IDE.exw:7445 in procedure click_MenuRun() variable hNewProcess has not been assigned a value" when I try to temp run a code. Any idea what is going wrong ? thanks Rubens At 08:10 16/9/2002, you wrote: > > >Judith Evans wrote: > > Thanks for reporting the bug. I'll fix and upload shortly. > > >http://user.txcyber.com/~camping/judith.html IDE v0.14.2 has been >uploaded to fix the bug in IDE_syntax.ew: >Line 2573 in routine synRestoreINIFile in IDE_Syntax.ew should be >if hfile !=-1 then >not >if hfile!=1 then > >I also made a change in stand alone editor to catch missing win32lib.htm >document location. [I already have that in IDE Code Editor.] > > >
6. RE: IDE v14 Released
- Posted by rubis at fem.unicamp.br Sep 23, 2002
- 437 views
I solve the problem changing the line 7299 exePathName=GetEuDir() & "\\bin\\exw.exe" to exePathName= "e:\\euphoria\\bin\\exw.exe". I think the problem was in the result of GetEuDir(). My Euphoria compiler is in drive E:\. I will make more testes with the GetEuDir(). Rubens At 19:40 23/9/2002, you wrote: > > I'm getting the error 12 "Create ProcessHi failed" > >"E:\EUPHORIA\ide14_2\IDE.exw:7445 in procedure click_MenuRun() >variable hNewProcess has not been assigned a value" > >when I try to temp run a code. > >Any idea what is going wrong ? > >thanks > >Rubens > > >At 08:10 16/9/2002, you wrote: >> >> >>Judith Evans wrote: >> > Thanks for reporting the bug. I'll fix and upload shortly. >> > >>http://user.txcyber.com/~camping/judith.html IDE v0.14.2 has been >>uploaded to fix the bug in IDE_syntax.ew: >>Line 2573 in routine synRestoreINIFile in IDE_Syntax.ew should be >>if hfile !=-1 then >>not >>if hfile!=1 then >> >>I also made a change in stand alone editor to catch missing win32lib.htm >>document location. [I already have that in IDE Code Editor.] >> >> > > >