Page 1 of 1

1.877 / 4.20: Another String Problem

Posted: Thu Nov 20, 2008 1:30 pm
by Vladi
Lib:

Code: Select all

ProcedureDLL$ proc(str$)
   ProcedureReturn str$
EndProcedure
Pgm:

Code: Select all

s$="x"
s2$=proc(Str(1))
Debug s$+s2$+s$
Debug s$+proc(Str(1))+s$
First result is x1x as expected, but the second produces only x1...

Posted: Thu Nov 20, 2008 4:04 pm
by Mistrel

Posted: Thu Nov 20, 2008 7:59 pm
by Vladi
Thanks, mistrel. Any other "known issues" one should know?

Posted: Thu Nov 20, 2008 8:19 pm
by Vladi
Sorry, but that doesn't solve the problem. Of course the calling pgm ist doing string manipulation; the Str(1) in the calling pgm ist just causing the problem.

Posted: Sun Nov 23, 2008 4:21 pm
by Vladi
Nobody interested in this bug?