M
Mark
Why oh why do I get a Run-time Error '13' - type mismatch
error in the following code (Code is under the click
property of a button on a form):
Private Sub ProcessTransaction_Click()
On Error GoTo Err_ProcessTransaction_Click
Dim db As Database
Dim Members As Recordset
Dim Transactions As Recordset
Dim LastBalance As Recordset
Set db = CurrentDb
Set Members = db.OpenRecordset("Select_Members")
<<Error occurs here
'Select_Members is a select query
Any help is greatly appreciated. Thank you in advance.
..
error in the following code (Code is under the click
property of a button on a form):
Private Sub ProcessTransaction_Click()
On Error GoTo Err_ProcessTransaction_Click
Dim db As Database
Dim Members As Recordset
Dim Transactions As Recordset
Dim LastBalance As Recordset
Set db = CurrentDb
Set Members = db.OpenRecordset("Select_Members")
<<Error occurs here
'Select_Members is a select query
Any help is greatly appreciated. Thank you in advance.
..