Find Defaults

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

Guest

How do you make the database find defaults general search for the current
database only? I assume you would add somesort of code to the onload section.
 
This will return the current setting (0-2), so that you can set it back to
where the user had it when you close your database. Store this somewhere
that it won't be "forgotten", such as in a "settings table".

Application.GetOption("Default Find/Replace Behavior")

This will set it to where you want it.

Application.SetOption "Default Find/Replace Behavior", 1
 
Thank you for your help!

Wayne Morgan said:
This will return the current setting (0-2), so that you can set it back to
where the user had it when you close your database. Store this somewhere
that it won't be "forgotten", such as in a "settings table".

Application.GetOption("Default Find/Replace Behavior")

This will set it to where you want it.

Application.SetOption "Default Find/Replace Behavior", 1
 
Back
Top