Charles,
If it works like printf in C which I think it does, just precede your format
specifier with a 0. Like so :
StrPrintF(temp, "the length of temp is : %06d", StrLen(temp));
HTH,
Eric Oliver
-----Original Message-----
From: Charles Rezsonya [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 23, 1999 3:35 PM
To: [EMAIL PROTECTED]
Subject: StrPrintF
when using StrPrinfF, i found using this option
StrPrintF(temp, "the length of temp is : %6d", StrLen(temp));
which shows "the length of temp is : 121"
but i can't figure out how to substitute the ' ' (space) for my own
character. ie, i want it to be padded with
0's instead "ie, 000121")
anyone know how to do this?