I have a dateTimePicker control on a Windows Form, I'd like to set the value equal to a dataSet field. Looks like I need to convert to DateTime, but I'm not sure how. The following errors with 'Cannot implicity convert string to datetime!':
dateTimePicker1.Value = dr["myDate"].ToString();
...and there's not a toDate() function?
dateTimePicker1.Value = dr["myDate"].ToString();
...and there's not a toDate() function?