Reputation: 107
I just want to ask something, can I use a 12/10/93 date format in datetimepicker in VB.Net? mm/dd/yy specifically. If I can, how?
Upvotes: 4
Views: 39141
Reputation: 26414
In the properties window for your DateTimePicker, set Format to Custom, then set CustomFormat to MM/dd/yy
, note the upper case MM
, lower case is reserved for minutes.
Upvotes: 14