you need to set the focus to your txtbox you want the cursor to appear. ex. Report_Name is the name of my text box it want the cursor to go to after i click the cmd button
Private Sub cmdNewRecord_Click()
On Error GoTo Err_cmdNewRecord_Click
DoCmd.GoToRecord , , acNewRec
Report_Name.SetFocus
Exit_cmdNewRecord_Click:
Exit Sub
Err_cmdNewRecord_Click:
MsgBox Err.Description
Resume Exit_cmdNewRecord_Click
End Sub
jtayl76@associatescommerce.com