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

new topic     » topic index » view thread      » older message » newer message

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 thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu