how can i make a date display in yymmdd format?
i used this but it doesn't work
i'm not sure but i think i used this before in vb6 :bigyello: not sure
VB Code:
format(dte.Today,"yymmdd")
well
thanks,
jewel
Printable View
how can i make a date display in yymmdd format?
i used this but it doesn't work
i'm not sure but i think i used this before in vb6 :bigyello: not sure
VB Code:
format(dte.Today,"yymmdd")
well
thanks,
jewel
MyDate.ToString("yyMMdd")
make sure the MM is uppercase though
Thanks!