Les F
It's not hard to make your own. Or you can use mine:
http://www.serverscripting.com/info.asp?id=1027
----------
Randy Hunt
MCP+I / MCSE
Please visit my web sites for free scripts!
http://www.serverscripting.com
http://www.wshscripting.com
Function AddLeadingZeroes(TheNumber,Amount)
AddLeadingZeroes = String(Amount,"0") & TheNumber
End Function
"Les F." <za...@hotmail.com> wrote in message
news:e5bf1bj7AHA.1340@tkmsftngp04...
'---------------------
Function AddLeadingZeros(Value)
If Len(Value) < 4 And IsNumeric(Value) then
Value = Pad(Value, 4, 0)
End If
AddLeadingZeros = Value
End Function
'---------------------
Function Pad(Value, Width, Char)
Pad = Right(String(Width, CStr(Char)) & CStr(Value), Width)
End Function
"Les F." <za...@hotmail.com> wrote in message
news:e5bf1bj7AHA.1340@tkmsftngp04...