Results 1 to 6 of 6
  1. #1
    sephiroth2906 is offline Advanced Beginner
    Windows 7 64bit Access 2010 64bit
    Join Date
    Apr 2011
    Posts
    73

    Cannot utilize find and replace, but only on this PC


    Howdy all! I have a database I am working with that, on other users PCs, I can utilize the Find and Replace tool, either by clicking on the icon or using ctrl-f, as one would expect.

    However, on this PC, that function on the same database does not work. If I try and click a field and use the search box on the bottom of the form, I get the following message:



    So, I suspect there is a setting on this computer's Access or Office options that is not chosen (or is) on other user's PCs, but for the life of me, I cannot locate what it would be. Any suggestions?

    ps, If I get out of database entry mode, I can use the search function. However, I will be putting this database on some neophytes computers who know less than I do about Access, and I am no rocket scientist here. I really appreciate the help!

  2. #2
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    Quote Originally Posted by sephiroth2906 View Post

    ...If I get out of database entry mode, I can use the search function...
    If you'll check closer you'll find that this same thing will happen on all PCs! When you have the DataEntry Property set to 'Yes,' the only Records contained in that Recordset, which is to say the only Records that can searched, are those that have been entered during that session. Previously entered Records are not included.

    The first question to be answered, here, is why do you have the Form's Data Entry Property set to 'Yes?' Despite its name, it doesn't have to be set to 'Yes' in order to enter Records. All it does is to only allow New Records to be entered.

    If you absolutely have to have the Data Entry Property set to 'Yes,' you'll have to use a custom 'search' button and set Data Entry to 'No' before invoking the Find command.

    But tell us why you're currently using it.

    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

  3. #3
    sephiroth2906 is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2011
    Posts
    73
    I looked closer, and, of course, you are correct. I have it on so it always pulls up a blank form, but I guess I am not married to it. So, new question. I still want a new record to pop up when the form loads. Is there a default setting for that? If not, I can always create a button. Thanks for the explanation!

  4. #4
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    This will open the Form to a New Record and allow Find to work, with Data Entry set to 'No.'
    Code:
    Private Sub Form_Load()
      DoCmd.GoToRecord , , acNewRec
    End Sub


    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

  5. #5
    sephiroth2906 is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2011
    Posts
    73
    Perfect! Thanks so much!

  6. #6
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    Glad we could help!

    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

Please reply to this thread with any new information or opinions.

Similar Threads

  1. find and replace
    By rohini in forum Access
    Replies: 7
    Last Post: 05-17-2012, 05:23 AM
  2. Find and Replace Within a Macro
    By bmschaeffer in forum Access
    Replies: 1
    Last Post: 12-20-2011, 11:27 AM
  3. Find and Replace
    By Bedsingar in forum Access
    Replies: 1
    Last Post: 08-14-2011, 01:10 PM
  4. Dumb question about find/replace
    By Perplexed in forum Access
    Replies: 11
    Last Post: 08-04-2010, 09:53 AM
  5. Find and Replace Query
    By randolphoralph in forum Queries
    Replies: 4
    Last Post: 03-17-2010, 07:25 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums