P
paulnewton44
I cannot assign a custom date format for the OpenNetCF DateTimePicker
control, it just seems to ignore the setting.
I need the setting to be "dd/mm/yy", but it defaults to "mm/dd/yy"
I have the following code in my form's Load event...
Dim mPicker As OpenNETCF.Windows.Forms.DateTimePicker
mPicker = New OpenNETCF.Windows.Forms.DateTimePicker
mPicker.CustomFormat = "dd/mm/yy"
mPicker.Format = OpenNETCF.Windows.Forms.DateTimePickerFormat.Custom
mPicker.Bounds = New Rectangle(40, 6, 100, 20)
Me.Controls.Add(mPicker)
I am using v1.4 of OpenNetCF, I have read threads with other guys
having the same issue, but I have not seen any fixes..
TIA
Paul Newton
control, it just seems to ignore the setting.
I need the setting to be "dd/mm/yy", but it defaults to "mm/dd/yy"
I have the following code in my form's Load event...
Dim mPicker As OpenNETCF.Windows.Forms.DateTimePicker
mPicker = New OpenNETCF.Windows.Forms.DateTimePicker
mPicker.CustomFormat = "dd/mm/yy"
mPicker.Format = OpenNETCF.Windows.Forms.DateTimePickerFormat.Custom
mPicker.Bounds = New Rectangle(40, 6, 100, 20)
Me.Controls.Add(mPicker)
I am using v1.4 of OpenNetCF, I have read threads with other guys
having the same issue, but I have not seen any fixes..
TIA
Paul Newton