Microsoft System Date Format

  • Thread starter Thread starter Indrajit Guha
  • Start date Start date
Indrajit Guha said:
How will I find out the system date format of Windows OS
through VB.

See members of

System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat
 
Unfortunately I am not able to use your suggestion properly. Can you
give me an example. Thanking you in advance.
 
Unfortunately I am unable to use your suggestion properly.
Please provide an example. Thanking you in advance.
 
Indrajit Guha said:
Unfortunately I am not able to use your suggestion properly. Can
you give me an example. Thanking you in advance.



Dim Info As System.Globalization.DateTimeFormatInfo

Info = System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat
MsgBox(Info.DateSeparator)
 
Back
Top