Find dialog defaults

B

Bill B.

I just converted an A97 Database to A03. I now have a very slow Find. When I
uncheck the "Search Fields as Formatted" (SFaF) option, the find works very
well. How do I set the SFaF option off by default. The code that generates
the Find dialog is:

Private Sub FindRecord_Click()
On Error GoTo Err_FindRecord_Click

Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70

Exit_FindRecord_Click:
Exit Sub

Err_FindRecord_Click:
MsgBox Err.Description
Resume Exit_FindRecord_Click

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