Right, calling all the experts now for a little something.
I need to create a small little program that sets the ShortDateFormat of Regional Settings to UK.
I can read it no probs, but setting it is giving read-only errors.
As it stands, it reads as the following...
Has anyone any ideas on how to set it?
TIA
I need to create a small little program that sets the ShortDateFormat of Regional Settings to UK.
I can read it no probs, but setting it is giving read-only errors.
As it stands, it reads as the following...
Dim instance As DateTimeFormatInfo
Dim value As String
value = instance.CurrentInfo.ShortDatePattern
MsgBox(value.ToString)
instance.CurrentInfo.ShortDatePattern = "dd/MM/yyyy"
MsgBox("Done")
Has anyone any ideas on how to set it?
TIA