I Cansuccessfully open a Form to a designated particular field if it's a New Record.
PrivateSub Form_Load()
DoCmd.GoToRecord , , acNewRec
Me.DayTime.SetFocus
EndSub
However,what if I wanted to open a Form to a designated field say in the First Record?
Itried replacing 'acNewRec' with 'acFirstRec' but it didn't work.
PrivateSub Form_Load()
DoCmd.GoToRecord , , acFirstRec
Me.DayTime.SetFocus
EndSub
*Am Ito assume that one can only open a Form to a designated particular field ifit's a New Record?
Anyadvice/suggestions will be greatly appreciated! Thanks in advanced.