
-----------------------------------
aditya
Thu Dec 30, 2004 6:43 pm

how do i convert a int variable into string variable
-----------------------------------
how do i convert a int variable into string variable
and then use it in the font draw

-----------------------------------
SuperGenius
Thu Dec 30, 2004 6:52 pm


-----------------------------------
this is a pretty easy question. you need to use the intstr command. so:


var num : int
var numstring : string
..
num = 2+4
numstring := intstr(num)


Remember, the help file is your friend.
