1.877 / 4.20: Another String Problem

TailBite specific forum

Moderators: gnozal, ABBKlaus, lexvictory

Vladi
User
User
Posts: 33
Joined: Sun Sep 10, 2006 3:09 pm

1.877 / 4.20: Another String Problem

Post 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...
Mistrel
Addict
Addict
Posts: 3415
Joined: Sat Jun 30, 2007 8:04 pm

Post by Mistrel »

Vladi
User
User
Posts: 33
Joined: Sun Sep 10, 2006 3:09 pm

Post by Vladi »

Thanks, mistrel. Any other "known issues" one should know?
Vladi
User
User
Posts: 33
Joined: Sun Sep 10, 2006 3:09 pm

Post 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.
Vladi
User
User
Posts: 33
Joined: Sun Sep 10, 2006 3:09 pm

Post by Vladi »

Nobody interested in this bug?
Post Reply