Find Option without the Replace Option.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way I can do just a "Find" and not have the "Replace" tab be
available.
 
Casey, I agree with you that this dialog is frustrating.

The Replace tab does disappear of the form's AllowEdits property is No. So,
one workaround is a button that does this:
Me.AllowEdits = False
RunCommand acCmdFind
Me.AllowEdits = True
 
I am new to access and to script writing. Where would I place those commands
at?
 

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

Back
Top