F
Frank Martin
I have Access2000 with WindowsXP.
I have a list box on my form set to the property of "None",
And this works fine.
I want to set it to "Simple" so that I can see all the selections I make,
but when I do this I get an error "Run time error 94 - Invalid use of null"
The block of code displayed by the error message is:
*******
Private Sub List6_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AddressesID] = " & Str(Me![List6])
Me.Bookmark = rs.Bookmark
End Sub
********
Is there anyway around this problem?
Please help, Frank
I have a list box on my form set to the property of "None",
And this works fine.
I want to set it to "Simple" so that I can see all the selections I make,
but when I do this I get an error "Run time error 94 - Invalid use of null"
The block of code displayed by the error message is:
*******
Private Sub List6_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AddressesID] = " & Str(Me![List6])
Me.Bookmark = rs.Bookmark
End Sub
********
Is there anyway around this problem?
Please help, Frank