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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Find and replace" produces "Not a valid bookmark" message

Status
Not open for further replies.

jeffmorl

Programmer
Mar 30, 2011
33
US
I have a single form that users have been using for months and months. All of a sudden, when someone does a search for a particular record ID, it fails and produces a Not A Valid Bookmark message that won't go away. The user then has to red 'x' out of the application.

Using MS Office 10, Access version 14.0.6xxxx. Application written in Access 2003 (I think).
 
Okay, so there is some VBA that runs behind a button in Access?

If so, you probably would be best off asking/discussing the issue in:
forum705

And to speed things along, it'd probably be best to look first at the code that runs behind the button giving the error. Also, if that code references any other custom code, it would probably be beneficial to add that as well.

And when you paste the code, please do so within [ignore]
Code:
[/ignore]
brackets like this:

Code:
Private Sub MyFancyButton_CLick()
     If Day(Today()) = vbThursday Then
          Msgbox "Howdy, Today be Thursday, not Friday, now get back to work!"
     Else
          Msgbox "Nope, today is not thursday!"
     End If
End Sub


"But thanks be to God, which giveth us the victory through our Lord Jesus Christ." 1 Corinthians 15:57
 
Thanks, I'll post my question there. btw, the button I use is the standard "find record" button that I placed on the form using the button wizard, nothing special with that button.
 
Thanks for the info - yes, that should help in sorting out the issue.

For anyone reading this, the new thread is here:
thread705-1693813

"But thanks be to God, which giveth us the victory through our Lord Jesus Christ." 1 Corinthians 15:57
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top