Microsoft System Date Format

  • Thread starter Thread starter Indrajit Guha
  • Start date Start date
I

Indrajit Guha

How will I find out the system date format of Windows OS
through VB.
 
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top