1. RE: Bugs in latest IDE (0.18.6o)
- Posted by "Derek Parnell" <ddparnell at bigpond.com> Feb 17, 2004
- 577 views
> -----Original Message----- > From: CoJaBo [mailto:cojabo at suscom.net] > Subject: RE: Bugs in latest IDE (0.18.6o) > > > > Judith wrote: [snip] > > > > > The error messages from getOpenFileName and getSaveFileName > come from > > win32lib routines. I notice there is an offering in Recent > Contributions > > that will help with getSaveFileName. Can anyone work up > getOpenFileName > > to > > supply the ext from FileTypes if user does not enter the ext? > > If IDE doesn't find the ext, then couldn't it just append the > default? Judith: Are you expecting the win32lib routine to automatically add this for you? I don't think I would like to do this as a default behavior, but maybe as a special option. Its a fairly common requirement but not universal. [snip] > > > > CoJaBo wrote: > > Also, if I put my computer in standby mode or logoff, I get > a zillion > > warning messages. > > Adding: > > setWarning(0) > > somewere in IDE should correct this, the warnings are harmless, but > > annoying. > > > > Will this be done? What are these messages? Maybe its something needs to be fixed in win32lib? -- Derek
2. RE: Bugs in latest IDE (0.18.6o)
- Posted by Brian Broker <bkb at cnw.com> Feb 17, 2004
- 573 views
Derek Parnell wrote: > > > > -----Original Message----- > > From: CoJaBo [mailto:cojabo at suscom.net] > > Sent: Wednesday, 18 February 2004 9:38 AM > > To: EUforum at topica.com > > Subject: RE: Bugs in latest IDE (0.18.6o) > > > > > > Judith wrote: > > [snip] > > > > > > The error messages from getOpenFileName and getSaveFileName > > come from > > > win32lib routines. I notice there is an offering in Recent > > Contributions > > > that will help with getSaveFileName. Can anyone work up > > getOpenFileName > > > to > > > supply the ext from FileTypes if user does not enter the ext? > > > > If IDE doesn't find the ext, then couldn't it just append the > > default? > > Judith: Are you expecting the win32lib routine to automatically add this > for > you? I don't think I would like to do this as a default behavior, but > maybe > as a special option. Its a fairly common requirement but not universal. > > > [snip] > > > > > > > CoJaBo wrote: > > > Also, if I put my computer in standby mode or logoff, I get > > a zillion > > > warning messages. > > > Adding: > > > setWarning(0) > > > somewere in IDE should correct this, the warnings are harmless, but > > > annoying. > > > > > > > Will this be done? > > What are these messages? Maybe its something needs to be fixed in > win32lib? > > -- > Derek > If I recall correctly, it is an issue with blitting to a locked screen(via ctl-alt-del for example). In the case of the IDE, a popup occurs when the emulated text cursor is being blitted. I'm not sure if it's an XP-only issue or not. The error is (similar using 0.59.1): --------------------------- Win32Lib AppWindow - Error Warning --------------------------- bitBlt:BitBlt failed. Press [ YES ] to continue, [ NO ] to ignore repeats, or [ Cancel ] to quit. Win32Lib v0.59.2 13-Feb-2004 Beta --------------------------- Yes No Cancel --------------------------- I can repro running PRETEND.EXW demo then hitting Ctl-Alt-Del. You don't have to actually lock the system to get the popups and in fact you'll want to ESC back to the program quickly because that demo does many updates per second. -- Brian
3. RE: Bugs in latest IDE (0.18.6o)
- Posted by "Judith" <camping at txcyber.com> Feb 18, 2004
- 571 views
Derek, Here is a little demo. If you run it without entering a file type it will give you an error message. ~judith include Win32Lib.ew without warning ---------------------------------------------------------------------------- ---- -- Window Window1 constant Window1 = createEx( Window, "Window1", 0, Default, Default, 342, 197, 0, 0 ) constant EditText2 = createEx( EditText, "EditText2", Window1, 16, 44, 288, 24, 0, 0 ) constant LText3 = createEx( LText, "File opened is:", Window1, 16, 16, 288, 28, 0, 0 ) constant PushButton4 = createEx( PushButton, "Open File", Window1, 88, 84, 152, 32, 0, 0 ) --------------------------------------------------------- ---------------------------------------------------------------------------- ---- procedure PushButton4_onClick (integer self, integer event, sequence params)--params is () sequence fName,FileTypes FileTypes = {"ProjectFile","*.prj"} fName = getOpenFileName( Window1, current_dir() & "\\*.prj", FileTypes ) -- entered a file name? if length( fName ) = 0 then return end if setText(EditText2,fName) end procedure setHandler( PushButton4, w32HClick, routine_id("PushButton4_onClick")) WinMain( Window1,Normal )
4. RE: Bugs in latest IDE (0.18.6o)
- Posted by CoJaBo <cojabo at suscom.net> Feb 18, 2004
- 539 views
Derek Parnell wrote: > > > > -----Original Message----- > > From: CoJaBo [mailto:cojabo at suscom.net] > > Sent: Wednesday, 18 February 2004 9:38 AM > > To: EUforum at topica.com > > Subject: RE: Bugs in latest IDE (0.18.6o) > > > > > > Judith wrote: > > [snip] > > > > > > The error messages from getOpenFileName and getSaveFileName > > come from > > > win32lib routines. I notice there is an offering in Recent > > Contributions > > > that will help with getSaveFileName. Can anyone work up > > getOpenFileName > > > to > > > supply the ext from FileTypes if user does not enter the ext? > > > > If IDE doesn't find the ext, then couldn't it just append the > > default? > > Judith: Are you expecting the win32lib routine to automatically add this > for > you? I don't think I would like to do this as a default behavior, but > maybe > as a special option. Its a fairly common requirement but not universal. > > > [snip] > > > > > > > CoJaBo wrote: > > > Also, if I put my computer in standby mode or logoff, I get > > a zillion > > > warning messages. > > > Adding: > > > setWarning(0) > > > somewere in IDE should correct this, the warnings are harmless, but > > > annoying. > > > > > > > Will this be done? > > What are these messages? Maybe its something needs to be fixed in > win32lib? The warning messages. IDE should have "setWarning(0)" in it somwere to turn them off. > > -- > Derek > >
5. RE: Bugs in latest IDE (0.18.6o)
- Posted by "Judith" <camping at txcyber.com> Feb 18, 2004
- 575 views
CoJaBo wrote: >Judith wrote: >>Requests for Multiple Code Editors have come up many times. The present >>structure of Code Editor does not lend itself well to multiple >>instances. >>However I have an idea or two on the back-burner for a future release. I >>want to get IDE stable and most bugs out before I start requests such as >>multiple Code Editors, plugins and custom controls. Release 0.19.0 >>(coming >>next after the 0.18.n series of bug fixes) will concentrate on improving >>IDE >>internally, overhaul IDE.htm and set up some new routines which will >>pave >>the way for Code Editor enhancements. >That is fine, I saw the way it is set up, and I can wait... >But not too long! I'm not very sure when a multiple code editor can be ready. It may be some time. In the next 0.18.6p release I've added a view of the codebase for user to copy from or just to see the entire code. This might help some but not much. >>The error messages from getOpenFileName and getSaveFileName come from >>win32lib routines. I notice there is an offering in Recent Contributions >>that will help with getSaveFileName. Can anyone work up getOpenFileName >>to >>supply the ext from FileTypes if user does not enter the ext? >If IDE doesn't find the ext, then couldn't it just append the default? The problem with getOpenFileName and getSaveFileName is that the Dialog returns the error. I do not do that so I do not have time to attach the ext. >>I'm unclear which files you want highlighted. If you mean non >>Win32lib/Euphoria files then they are Euphoria and Win32lib highlighted >>already. Those added to the project also have their global routines >>highlighted. Some of the support files that come in the Win32lib package >>are >>not currently highlighted. You can run winlibscan.exw in the IDE >>distribution and indicate all the win32lib associated files you want >>syntax >>colored. This program is useful also when changing to newer versions of >>win32lib to update the syntax list for new routine names. >I mean if I wanted hilighting on a file named file.other_ext >then there would be a checkbox to enable hilighting on all files, >regardless of extension. Ah. I suppose so. However, if they are not Euphoria files, you would be wasting time waiting for the file to be parsed. >> I've fixed the problem with UnDo and will be distributing IDE 0.18.6p in >>a few days. >Thanks. >> I will make the other changes you have requested for 0.18.6p. >Thanksa gain. >>Thanks for reporting these problems. >>Since 0.19.0 may take longer than the normal 2-3 month turn-around, >>expect >>several updates within a week or two time frame until all reported bugs >>(that I know how to fix) are removed. After that time it may be 4-6 >>months >>before 0.19.0 is available. >>~judith >CoJaBo wrote: >Also, if I put my computer in standby mode or logoff, I get a zillion >warning messages. >Adding: >setWarning(0) >somewere in IDE should correct this, the warnings are harmless, but >annoying. >Will this be done? Yes.
6. RE: Bugs in latest IDE (0.18.6o)
- Posted by "Derek Parnell" <ddparnell at bigpond.com> Feb 18, 2004
- 583 views
> -----Original Message----- > From: CoJaBo [mailto:cojabo at suscom.net] > Subject: RE: Bugs in latest IDE (0.18.6o) > > > > Derek Parnell wrote: > > [snip] > > > > > > > > CoJaBo wrote: > > > > Also, if I put my computer in standby mode or logoff, I get > > > a zillion > > > > warning messages. > > > > Adding: > > > > setWarning(0) > > > > somewere in IDE should correct this, the warnings are > harmless, but > > > > annoying. > > > > > > > > > > Will this be done? > > > > What are these messages? Maybe its something needs to be fixed in > > win32lib? > > The warning messages. > IDE should have "setWarning(0)" in it somwere to turn them off. > > Rather than hide warnings, I'd prefer to fix them if possible. Some warnings are actually harmless but others are not. -- Derek
7. RE: Bugs in latest IDE (0.18.6o)
- Posted by CoJaBo <cojabo at suscom.net> Feb 18, 2004
- 576 views
The error I get is: http://64.78.109.121:123/IDE_err.jpg (hope that link works!) It will only be active for a few hours! Derek Parnell wrote: > > > > -----Original Message----- > > From: CoJaBo [mailto:cojabo at suscom.net] > > Sent: Wednesday, 18 February 2004 11:20 AM > > To: EUforum at topica.com > > Subject: RE: Bugs in latest IDE (0.18.6o) > > > > > > Derek Parnell wrote: > > > > > [snip] > > > > > > > > > > > CoJaBo wrote: > > > > > Also, if I put my computer in standby mode or logoff, I get > > > > a zillion > > > > > warning messages. > > > > > Adding: > > > > > setWarning(0) > > > > > somewere in IDE should correct this, the warnings are > > harmless, but > > > > > annoying. > > > > > > > > > > > > > Will this be done? > > > > > > What are these messages? Maybe its something needs to be fixed in > > > win32lib? > > > > The warning messages. > > IDE should have "setWarning(0)" in it somwere to turn them off. > > > > > Rather than hide warnings, I'd prefer to fix them if possible. Some > warnings > are actually harmless but others are not. > > -- > Derek > >