With Format you can specify the formatting you want using the
extra parameters. The usage is a little cryptic and not very
much documentated, but VB6 introduced new functions like FormatNumber,
FormatDateTime and alike that make the formatting much easier.
Marco
> I am doing international programming with regionally aware locals. I was
w> ondering what the difference was between using format() and Cstr() was
as
b> oth seem to convert to a regionally aware variant string.
> Dim d as double
s> im s as string
> d = 65.54
s> = format(d)
s> = cstr(d)