Hi, I've been trying to fool around with having certain Forms open to a certain field for data to be entered. The Form's is, 'Daily_Music_Log_frm' & the field's name is 'DayTime'
Here's the code I tried:
Private Sub DayTime_Click()
On Error GoTo Err_DayTime_Click
DoCmd.GoToRecord , , acNewRec
Forms![Daily_Music_Log_frm].DayTime.SetFocus
Exit_DayTime_Click:
Exit Sub
Err_DayTime_Click:
MsgBox Err.Number & ": " & Err.Description
End Sub
Any advice/suggestions will be greatly appreciated. Thanks in advance!