I've been using Jellyfish Editor with Lynx project explorer and found something kinda curious....
In doing a very simple task of retrieving the current path, I kept getting a truncated path name such "c:\blah\blahbl~1" when compiling / testing my code. I tried GetCurrentDirectoryA also, same thing....
This happens when Using F5 (compile / Run) when Lynx is running with Jellyfish.
IF:
a) Lynx is terminated, full path returned
b) PBedit is used instead of Jellyfish, (not F5 now), full path returned
c) using Jellyfish / Lynx I get the full path correctly if I select "compile project" or "compile and run" from Lynx menu, no problem either (disabled in Jellyfish)...
d) running the compiled exe, worked correctly also...
Guess, I got too used to hitting F5...
It's a simple test...make sure the current directory is a long name then run:
LOCAL st_testdir AS STRING
st_testdir = CURDIR$
MSGBOX (st_testdir)
Not a big deal, but might leave you scratching your head sometime....
In doing a very simple task of retrieving the current path, I kept getting a truncated path name such "c:\blah\blahbl~1" when compiling / testing my code. I tried GetCurrentDirectoryA also, same thing....
This happens when Using F5 (compile / Run) when Lynx is running with Jellyfish.
IF:
a) Lynx is terminated, full path returned
b) PBedit is used instead of Jellyfish, (not F5 now), full path returned
c) using Jellyfish / Lynx I get the full path correctly if I select "compile project" or "compile and run" from Lynx menu, no problem either (disabled in Jellyfish)...
d) running the compiled exe, worked correctly also...
Guess, I got too used to hitting F5...
It's a simple test...make sure the current directory is a long name then run:
LOCAL st_testdir AS STRING
st_testdir = CURDIR$
MSGBOX (st_testdir)
Not a big deal, but might leave you scratching your head sometime....
Comment