Page 1 of 1

[4.30-B3x86] ReplaceString() doesn't work?

Posted: Mon Oct 20, 2008 12:49 am
by WilliamL
Works fine in PPC but doesn't seem to work in x86.

a$="This is Art"
ReplaceString(a$, " is", " was") ; Will display "This is Art"
MessageRequester(a$,"")

Am I doing something wrong?

Posted: Mon Oct 20, 2008 12:55 am
by ts-soft

Code: Select all

a$="This is Art"
a$ = ReplaceString(a$, " is", " was") ; Will display "This is Art"
MessageRequester(a$,"") 

Posted: Mon Oct 20, 2008 3:19 am
by WilliamL
Yup, let's say that the Debug in the original example threw me off 8)

I've been sitting at the computer too long...

Thanks