How Do You Open Form In Data Entry Mode?

lakattack

Registered User.
Local time
Today, 17:53
Joined
Apr 17, 2007
Messages
35
Hello!

I was wondering how you open a form in data entry mode. The button is called Add Song! On Click: open frmSong in data entry mode

How do I go about doing that?

Can anyone help me please!!

Thanks
 
re:

Hi mate, Put this vba code in the search button on click event procedure

Private Sub cmd_AddSong_Click()

DoCmd.OpenForm "frmsong"

End Sub
 
Last edited:
Hi mate, Put this vba code in the search button on click event procedure

Private Sub cmd_AddSong_Click()

DoCmd.OpenForm "frmsong"

End Sub

Are you sure that it opens the form in Data Entry mode?
 
That will not do it, unless the form's data entry property is set to True. If it's not,

DoCmd.OpenForm "frmSong", , , , acFormAdd
 

Users who are viewing this thread

Back
Top Bottom