Hello,
I am using a command button on my form to start a new record.
I would like that new record to show up in a way that the top part of the form is visible, and not the bottom half.
I thought that if I set the focus to the first combo box on the form, I'd achieve my goal, but either I am not doing this correctly, or the entire idea is flawed.
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.GoToRecord , , acNewRec
Set Focus = Me.CIKID
Provided that using focus is a workable method, would it be better to set the focus from the On Load or On Open events instead?
I am using a command button on my form to start a new record.
I would like that new record to show up in a way that the top part of the form is visible, and not the bottom half.
I thought that if I set the focus to the first combo box on the form, I'd achieve my goal, but either I am not doing this correctly, or the entire idea is flawed.
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.GoToRecord , , acNewRec
Set Focus = Me.CIKID
Provided that using focus is a workable method, would it be better to set the focus from the On Load or On Open events instead?