I've noticed something strange when using the code below with a DateTimePicker
wondering anyone else noticed or knows why this happens
The above code gives me the result
NoA Available
For some reason lower case t's results in a upper case A
Also notices that lower case y's results are a space then the number 8
The above code gives me the result
A_8
Any ideas why this happens?
wondering anyone else noticed or knows why this happens
Code:
Dim ws As String
ws = "Not Available"
DateTimePicker1.Format = DateTimePickerFormat.Custom
DateTimePicker1.CustomFormat = ws
NoA Available
For some reason lower case t's results in a upper case A
Also notices that lower case y's results are a space then the number 8
Code:
Dim ws As String
ws = "ty"
DateTimePicker1.Format = DateTimePickerFormat.Custom
DateTimePicker1.CustomFormat = ws
A_8
Any ideas why this happens?
Comment