S
Sue Compelling
Hi
I'm using Access2007 and have the procedure below on after update - which
works perfectly fine in my environment - though when the user installs it the
code no longer works.
I have decompiled the DB and also "unsandboxed" it ... (per a previous posts
answer) though this hasn't fixed it.
There are also 3 other after update events (around making boxes invisible
etc) that are not working either.
Any clues on where I might start looking?
Private Sub cboSearch_AfterUpdate()
With Me.RecordsetClone
.FindFirst "ContactID = " & CBOSearch
If Not .NoMatch Then
Me.Bookmark = .Bookmark
End If
End With
Me.txtNewText.SetFocus
End Sub
I'm using Access2007 and have the procedure below on after update - which
works perfectly fine in my environment - though when the user installs it the
code no longer works.
I have decompiled the DB and also "unsandboxed" it ... (per a previous posts
answer) though this hasn't fixed it.
There are also 3 other after update events (around making boxes invisible
etc) that are not working either.
Any clues on where I might start looking?
Private Sub cboSearch_AfterUpdate()
With Me.RecordsetClone
.FindFirst "ContactID = " & CBOSearch
If Not .NoMatch Then
Me.Bookmark = .Bookmark
End If
End With
Me.txtNewText.SetFocus
End Sub