Find

J

James

I got an error message "You can't use find or replace now" and now the find
box will not open when the form opens. The error message was because there
was not any records yet. Then I added a record through the table and now
there is no error message but the find form will not show. Unless you go to
the find toolbar button.


Private Sub Form_Open(Cancel As Integer)
On Error GoTo Err_Form_Open

DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70

Exit_Form_Open:
Exit Sub

Err_Form_Open:
MsgBox Err.Description
Resume Exit_Form_Open

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top