T
Terry Olsen
This is the easiest way I can think of to do this:
tmp=Right("0" & Now.Month.ToString, 2)
The only way I've figured to do it the .NET way is this:
tmp="0" & Now.Month.ToString
tmp=tmp.substring(tmp.length-3)
Surely, there's a more elegant way?
tmp=Right("0" & Now.Month.ToString, 2)
The only way I've figured to do it the .NET way is this:
tmp="0" & Now.Month.ToString
tmp=tmp.substring(tmp.length-3)
Surely, there's a more elegant way?