Dean Gahlon wrote:
[Charset UTF-8 unsupported, filtering to ASCII...]
Luc Le Blanc wrote:
 > BTW, StrRchr doesn't exist. I have to write it too ;)

should be StrChr, such exists

It should *not* be StrChr; Aaron's initial suggestion was to do
StrRChr(path, '/')
to get the last '/' character. Using StrChr would get the _first_ '/'
character; this wouldn't do what the OP wanted at all.


my fault.... i usually use
char *x=fullpath;
while((x=StrChr(x,'/'))
        x++;

or something similar.... i never saw this version with R before so i thought its typo..sorry for confusion

--
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to