R
Ross Crawford
I'm new to Access, but not new to programming.
I have a form with a button that i want to use to find the first record
with null in a particular field. In the button's click code I put the
following code, basically pinched from the help file:
Dim rst As Recordset
Set rst = Me.RecordsetClone
rst.Find "[Field] is null"
Me.Bookmark = rst.Bookmark
When I click the button, I get a "type mismatch" on the "Set" line. I
can't work out why this would happen, can anyone help me please?
ROSCO
I have a form with a button that i want to use to find the first record
with null in a particular field. In the button's click code I put the
following code, basically pinched from the help file:
Dim rst As Recordset
Set rst = Me.RecordsetClone
rst.Find "[Field] is null"
Me.Bookmark = rst.Bookmark
When I click the button, I get a "type mismatch" on the "Set" line. I
can't work out why this would happen, can anyone help me please?
ROSCO