I'm looking for some equivalent code that will convert a number using a mask
and store the result into a string.
In VBA: stringvar = Format$(I,"000") returns a 3 digit string. I.E.
when I = 1; "001" is the result. Its just like the Text(I,"000") function
that excel uses.
How is this done in VBScripting?
I have tried the FormatNumber() function but the 2nd parm that deals with
leading zeroes, is a boolean var parameter that doesn't do what I need.
--
Regards,
John