May 14, 2002 #1 qwertz Programmer Joined Jun 6, 2002 Messages 2 Location EU Hi how can i convert a integer variable into a string avriable. Greetings make
May 14, 2002 #2 Required MIS Joined Apr 12, 2002 Messages 52 Location ES Code: define variable i as integer initial 15. define variable c as character. c = string(i). display i c. Upvote 0 Downvote
Code: define variable i as integer initial 15. define variable c as character. c = string(i). display i c.
May 14, 2002 #3 tmryan Programmer Joined Dec 22, 2000 Messages 73 Location US You can also format it with the STRING() command. mystring = STRING(i, "99999". Make sure your format is big enough to handle your desired output. Tim Ryan PROGRESS Developer Upvote 0 Downvote
You can also format it with the STRING() command. mystring = STRING(i, "99999". Make sure your format is big enough to handle your desired output. Tim Ryan PROGRESS Developer