How do I fricking convert a number to a string and a string to a number in VBScript!? There is no Val, or Str functions.
Printable View
How do I fricking convert a number to a string and a string to a number in VBScript!? There is no Val, or Str functions.
Hi,
I don't know if it's in VBScript too but in VB there are functions like
-
CLng( "1" ) 'returns a Long
CStr( 1 ) 'returns a String
-
Hope this helps :cool:
------------------
[email protected]
...
Every program can be reduced to one instruction which doesn't work.