A Armin Zingler Nov 14, 2003 #2 Indrajit Guha said: How will I find out the system date format of Windows OS through VB. Click to expand... See members of System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat
Indrajit Guha said: How will I find out the system date format of Windows OS through VB. Click to expand... See members of System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat
H Herfried K. Wagner [MVP] Nov 14, 2003 #3 * "Indrajit Guha said: How will I find out the system date format of Windows OS through VB. Click to expand... 'System.Globalization.CultureInfo.CurrentCulture.*.DateTimeFormat.*'. -- Herfried K. Wagner MVP · VB Classic, VB.NET <http://www.mvps.org/dotnet> <http://www.plig.net/nnq/nquote.html>
* "Indrajit Guha said: How will I find out the system date format of Windows OS through VB. Click to expand... 'System.Globalization.CultureInfo.CurrentCulture.*.DateTimeFormat.*'. -- Herfried K. Wagner MVP · VB Classic, VB.NET <http://www.mvps.org/dotnet> <http://www.plig.net/nnq/nquote.html>
I Indrajit Guha Nov 15, 2003 #4 Unfortunately I am not able to use your suggestion properly. Can you give me an example. Thanking you in advance.
Unfortunately I am not able to use your suggestion properly. Can you give me an example. Thanking you in advance.
I Indrajit Guha Nov 15, 2003 #5 Unfortunately I am unable to use your suggestion properly. Please provide an example. Thanking you in advance.
Unfortunately I am unable to use your suggestion properly. Please provide an example. Thanking you in advance.
A Armin Zingler Nov 15, 2003 #6 Indrajit Guha said: Unfortunately I am not able to use your suggestion properly. Can you give me an example. Thanking you in advance. Click to expand... Dim Info As System.Globalization.DateTimeFormatInfo Info = System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat MsgBox(Info.DateSeparator)
Indrajit Guha said: Unfortunately I am not able to use your suggestion properly. Can you give me an example. Thanking you in advance. Click to expand... Dim Info As System.Globalization.DateTimeFormatInfo Info = System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat MsgBox(Info.DateSeparator)