I have a issue. I had to reinstall office and lost some information
the following code worked till the reinstall
If you select a name from the list (current name now not on list in box) it produces a can not find project or library error at str (Nz. Can any one tell me which libray I need to use. Can not remember Thanks
Never give up never give in.
There are no short cuts to anything worth doing
the following code worked till the reinstall
Code:
Private Sub Combo98_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AddressID] = " & Str(Nz(Me![Combo98], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Never give up never give in.
There are no short cuts to anything worth doing