2008 Jul 02 8:16 AM
Hi
How to convert integer data type to character at the runtime.
Thanks and regards
Jatender Narang
2008 Jul 02 8:25 AM
HI,
Data: a type 1 value '12345'.
data: b(20).
b = a.
now you have the data you want in char format.
Regards
VIjay
Hi
How to convert integer data type to character at the runtime.
Thanks and regards
Jatender Narang
2008 Jul 02 8:25 AM
HI,
Data: a type 1 value '12345'.
data: b(20).
b = a.
now you have the data you want in char format.
Regards
VIjay
2008 Jul 02 8:28 AM