Nov 27, 2000 #1 Bro Technical User Mar 31, 2001 6 SR Hi, May I know that vb can have it own date format, means not link from the windows date format(dd/mm/yyyy) which set in the control panel???
Hi, May I know that vb can have it own date format, means not link from the windows date format(dd/mm/yyyy) which set in the control panel???
Nov 28, 2000 #2 swilliams Programmer Aug 23, 2000 583 BM As far as I know, this is where VB gets the default date formats. If you want to change this, use the Format function: Format(Now(), "dd/mm/yyyy" = 28/11/2000 Format(Now(), "mmm dd, yyyy" = Nov 28, 2000 ..... Simon Upvote 0 Downvote
As far as I know, this is where VB gets the default date formats. If you want to change this, use the Format function: Format(Now(), "dd/mm/yyyy" = 28/11/2000 Format(Now(), "mmm dd, yyyy" = Nov 28, 2000 ..... Simon