L lakattack Registered User. Local time Today, 21:30 Joined Apr 17, 2007 Messages 35 Apr 17, 2007 #1 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
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
H hardrock Registered User. Local time Today, 21:30 Joined Apr 5, 2007 Messages 166 Apr 17, 2007 #2 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: Apr 17, 2007
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
L lakattack Registered User. Local time Today, 21:30 Joined Apr 17, 2007 Messages 35 Apr 17, 2007 #3 hardrock said: Hi mate, Put this vba code in the search button on click event procedure Private Sub cmd_AddSong_Click() DoCmd.OpenForm "frmsong" End Sub Click to expand... Are you sure that it opens the form in Data Entry mode?
hardrock said: Hi mate, Put this vba code in the search button on click event procedure Private Sub cmd_AddSong_Click() DoCmd.OpenForm "frmsong" End Sub Click to expand... Are you sure that it opens the form in Data Entry mode?
pbaldy Wino Moderator Staff member Local time Today, 13:30 Joined Aug 30, 2003 Messages 36,272 Apr 17, 2007 #4 That will not do it, unless the form's data entry property is set to True. If it's not, DoCmd.OpenForm "frmSong", , , , acFormAdd
That will not do it, unless the form's data entry property is set to True. If it's not, DoCmd.OpenForm "frmSong", , , , acFormAdd