Nov 27, 2000 #1 Bro Technical User Joined Mar 31, 2001 Messages 6 Location 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 Joined Aug 23, 2000 Messages 583 Location 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