May 14, 2002 #1 qwertz Programmer Jun 6, 2002 2 EU Hi how can i convert a integer variable into a string avriable. Greetings make
May 14, 2002 #2 Required MIS Apr 12, 2002 52 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 Dec 22, 2000 73 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