In Access 2010, I'm trying to change a text box (tbxSheduleDate) to be the combination of the date (from date picker DTPicker1), and the time from a listbox (lbxHour)of hourly values. I tried the following but is doesn't work.
Private Sub lbxHour_Click()
Me!tbxScheduleDate = CVDate(Me!DTPicker1 & " " & Me!lbxHour)
End Sub
Any suggestions?
Thanks,
Brian
Private Sub lbxHour_Click()
Me!tbxScheduleDate = CVDate(Me!DTPicker1 & " " & Me!lbxHour)
End Sub
Any suggestions?
Thanks,
Brian