I am trying to set the time on my DateTimePicker value to "8:00 AM" on Form Load (using vb.net) but can't work out how to do it.
I have tried setting the value in the properties of my DateTimePicker to "8:00 AM" but on Form Load it keeps on reverting to the current time.
Current time displayed
I have also tried setting the values on Form Load but now get error
DateTimePicker.Value = Date.Now("8:00 AM")
The error I get based on my code above is:
Expression is not an array or a method, and cannot have an argument list.
I can't work out how to set this values.
Anyone got any ideas ?

Date.Nowand add 8:00AM as default time. - jitendragargDateTimePicker.Value = New DateTime(0, 0, 0, 8, 00, 0)also try this before itDateTimePicker.Format = DateTimePickerFormat.Time;and let me it works or not - pedram