RE: IDE v0.18.6p(bugs, just 5 though)
- Posted by CoJaBo <cojabo at suscom.net> Feb 22, 2004
- 471 views
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. > >