Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search fields as formatted option is checked by default in 2003

Status
Not open for further replies.

tweetyangel

Programmer
Dec 29, 2004
8
US
The "Search Fields As Formatted" option in the find dialog box is checked by default in Access 2003 and is slowing down searches tremendously. How can I change this default setting?

 
Hi. I Googled the phrase "Search Fields as Formatted" and found lots of other people asking the same thing, none of which were ever answered. Found this article though here on MS:
I'm not sure how you are using this, but i made a subform of a table (datasheet) on a form which has a button on it. I click into the field/column I care about in the subform, then click the button. The OnClick code I made:

Code:
'User must put cursor into a field/column of the datasheet, then click the button
    SendKeys "%o", False
    Me.Form1.SetFocus
    DoCmd.RunCommand acCmdFind

Worked good, except that when the FIND window pops up, your cursor is not in the FIND drop-down. The "Search Fields as Formatted" label is lightly outlined, telling me that's where the focus is. I don't know how to make it plunk the cursor into the Find box.

Hope this gets you started though.

g
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top