1. RE: IDE v0.18.6p(bugs, just 5 though)

Another one
on line 11855 in IDE.exw:

Changeing:
        at = find( '.', shortName )
        if at then                   
            if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
then
                ok=displayErrorMessage(7,{})
                return
            end if
        else
            ok=displayErrorMessage(8,{})
            return
        end if

to
        shortName=reverse(shortName)

        at = find( '.', shortName )
        if at then                   
            if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
then
                ok=displayErrorMessage(7,{})
                return
            end if
        else
        	fName&='.'&projectFileType --add the file extension
            --ok=displayErrorMessage(8,{})
            --return
        end if

Should correct the problem where IDE says "file type must be prj" if no 
extension is entered, I tested this new code and it seems to work fine.

CoJaBo wrote:
> 

> > > In code editor in IDE when you switch controls through the editor or by 
> > > double-clicking the control in the form design window, if there is 
> > > somthing entered in the selected event (like onclick) it jumps all the 
> > > way to the end instead of starting at the beginning.
> > 
> > Ok I found thast if you move the courser then switch to the control by  
> > double-clicking the control in the form design window, it works 
> > perfectly, but it still jumps to the end when you switch controls 
> > through the editor 
> > 
> > > 
> > > When the control is switched through the editor, and nothing is entered 
> > > in the select event, I think it should automattically select an event 
> > > with something in it. It currently does this correctly when you 
> > > double-click the control in the form design window.
> > > 
> 
> Also, if the "view code base" window is clicked, code editor dissappears 
> 
> behind IDE. It also should have a X button at the corner to close it.
> 
> And I think Code Editor should stay inside IDE like it did before 
> instead of it's own taskbar button, there were less windows to clutter 
> up the taskbar.
> 
> 
> > > Everything else looks good!
> > > 
> > > CoJaBo wrote:
> > > > 
> > > > 
> > > > Thanks! Where would we all be without you!
> > > > Judith wrote:
> > > > > 
> > > > > 
> > > > > Please find latest IDE at http://user.txcyber.com/~camping/judith.html
> > > > >
> > > > > was
> > > > > has fixes and enhancement below.
> > > > > 
> > > > > Bugs fixed:
> > > > > --Fixed problem in createEx of Find/Replace controls in syntax in
> > > > > preparation for next win32lib. Some controls overlapped and group
> > > > > radio
> > > > > buttons incorrectly parented.
> > > > > --When user keyed something like "abif" editor would autocomplete with
> > > > > "then..end if" in error. "if" did not autocomplete at the 3rd and
> > > > > later
> > > > > nesting. Applied same fixes to the other autocompletes.
> > > > > --Window Delete from ToolBar Icon did not fire.
> > > > > --When UnDo a layer delete or window delete results in extra layer
> > > > > tabs
> > > > > --UnDo a deleted control crashed IDE because layer information not
> > > > > saved
> > > > > 
> > > > > 
> > > > > for
> > > > > Undo.
> > > > > --When repeatedly maximized/restored Form Design it kept moving down 
> > > > > IDE's
> > > > > screen.
> > > > > --If Window's Style Explorer generated ClassDefaults for ChildWindow 
> > > > > when
> > > > > project was reloaded the ClassDefaults were placed into Class and
> > > > > ClassDefaults were lost.
> > > > > --Fixed IDE's w32HClose routine to properly set up close of Code
> > > > > Editor
> > > > > and
> > > > > avoid an error message from next Win32lib.
> > > > > --Changed parent of Code Editor to 0 from "Controls" in preparation
> > > > > for
> > > > > next
> > > > > Win32lib.
> > > > > --Saving project and subsequent reload inadvertantly removed Layer
> > > > > Tabs
> > > > > which didn't have controls.
> > > > > --Fixed bug when selecting control from Project View and then
> > > > > requesting
> > > > > delete and the wrong control gets deleted.
> > > > > --Adding a Module to project after Save in Code Editor no longer
> > > > > causes
> > > > > IDE
> > > > > to crash.
> > > > >  --!Menu always showed cursor at line 2 regardless.
> > > > > --Sometimes when new ex.err not found by IDE and old one used the 
> > > > > statement
> > > > > line pointed to by the ex.err doesn't exist and IDE crashes.
> > > > That happened to me just a minuet ago! Thanks for fixing that.
> > > > 
> > > > > --WinPos and TaskBar was not reloaded from project file for additional
> > > > > windows.
> > > > > 
> > > > > Enhancements:
> > > > > --MonthCalendar may be resized in Design by changing Font.
> > > > > --Code Editor's List of Controls is now next to Line Number gutter.
> > > > > The
> > > > > List
> > > > > is in the y,x order on Design.
> > > > > --Added a new window accessable from Code Editor which allows user to 
> > > > > view
> > > > > all user's coding in controls\events. Code may be copied and pasted
> > > > > into
> > > > > Code Editor. Code may not be modified in the View.
> > > > Good eneguf for now.
> > > > 
> > > > > --Added setWarning(0) in IDE.exw
> > > > Thanks
> > > > 
> > > > > --If Code Editor is open when a control is renamed, it now stays open.
> > > > > --If crash_file is found in user's coding (but not in an include file)
> > > > >
> > > > > that
<snip>

new topic     » topic index » view message » categorize

2. RE: IDE v0.18.6p(bugs, just 5 though)

Doesn't work on my machine. I still get an error message from the Dialog.
~judith

CoJaBo wrote:
Changeing:
        at = find( '.', shortName )
        if at then                   
            if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
then
                ok=displayErrorMessage(7,{})
                return
            end if
        else
            ok=displayErrorMessage(8,{})
            return
        end if

to
        shortName=reverse(shortName)

        at = find( '.', shortName )
        if at then                   
            if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
then
                ok=displayErrorMessage(7,{})
                return
            end if
        else
         fName&='.'&projectFileType --add the file extension
            --ok=displayErrorMessage(8,{})
            --return
        end if

Should correct the problem where IDE says "file type must be prj" if no 
extension is entered, I tested this new code and it seems to work fine.

new topic     » goto parent     » topic index » view message » categorize

3. RE: IDE v0.18.6p(bugs, just 5 though)

It does work on mine.
If you enter "filename" it will save correctyl with my code, but you 
must enter "filename.prj" for it to work with the old code.
However, if you would enter "filename.abc", it then displays the error, 
which is still ok. It can not display error #8 if you canged it 
correctly. I am using this change and have had no problems at all.

Judith wrote:
> 
> 
> Doesn't work on my machine. I still get an error message from the 
> Dialog.
> ~judith
> 
> CoJaBo wrote:
> Changeing:
>         at = find( '.', shortName )
>         if at then                   
>             if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
> then
>                 ok=displayErrorMessage(7,{})
>                 return
>             end if
>         else
>             ok=displayErrorMessage(8,{})
>             return
>         end if
> 
> to
>         shortName=reverse(shortName)
> 
>         at = find( '.', shortName )
>         if at then                   
>             if not equal(projectFileTypeTest, lower(shortName[1..at-1])) 
> then
>                 ok=displayErrorMessage(7,{})
>                 return
>             end if
>         else
>          fName&='.'&projectFileType --add the file extension
>             --ok=displayErrorMessage(8,{})
>             --return
>         end if
> 
> Should correct the problem where IDE says "file type must be prj" if no 
> extension is entered, I tested this new code and it seems to work fine.
> 
>

new topic     » goto parent     » topic index » view message » categorize

4. RE: IDE v0.18.6p(bugs, just 5 though)

Yep...
http://www.topica.com/lists/EUforum/read/message.html?mid=1716114172&sort=d&start=29044

My bad!

Pete Lomax wrote:
> 
> 
> On Sun, 22 Feb 2004 12:59:59 -0600, Judith Evans <camping at txcyber.com>
> wrote:
> 
> >I didn't say it displyed error message #8. I said the Dialog put out an
> >error message. It is not #8 because all my messages say "msg nnn" in the
> >message_box titlebar and this one says "Open".
> >
> >Maybe this is a Windows(tm) difference.
> Or one of you is doing a Save, the other an Open (or a Save As).
>

new topic     » goto parent     » topic index » view message » categorize

5. RE: IDE v0.18.6p(bugs, just 5 though)

>Now I see the problem... I forgot to say it only affects save, not
>open.... Oops...!

Beat me with a wet noodle! It is my fault; I didn't look to see what routine
the fix you gave was in and I was thinking we were talking about Open. Duh.

Yes, it works fine and it is added for the next release.

new topic     » goto parent     » topic index » view message » categorize

6. RE: IDE v0.18.6p(bugs, just 5 though)

Judith wrote:
> 
> 
> >Now I see the problem... I forgot to say it only affects save, not
> >open.... Oops...!
> 
> Beat me with a wet noodle! It is my fault; I didn't look to see what 
> routine
Sorry I don't have a wet noodle. grin

> the fix you gave was in and I was thinking we were talking about Open. 
> Duh.
> 
> Yes, it works fine and it is added for the next release.
> 
Thanks.

> 
>

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu