R
Robert
I am using a Public Function to Enable or Disable command
buttons depending on the situation. However, I am getting
the same error message when the form loads as I am when
using the Click property of the command buttons. The
procedure at the top is the following. And, when it is
debugged, it points to the line: Set rstClone =
frm.RecordsetClone.
Public Function DisableEnable(frm As Form)
Dim rstClone As ADODB.Recordset
'Create a clone of the form's recordset to
'move around in without affecting the form's
'recordset
Set rstClone = frm.RecordsetClone
I appreciate your help and thank you in advance.
buttons depending on the situation. However, I am getting
the same error message when the form loads as I am when
using the Click property of the command buttons. The
procedure at the top is the following. And, when it is
debugged, it points to the line: Set rstClone =
frm.RecordsetClone.
Public Function DisableEnable(frm As Form)
Dim rstClone As ADODB.Recordset
'Create a clone of the form's recordset to
'move around in without affecting the form's
'recordset
Set rstClone = frm.RecordsetClone
I appreciate your help and thank you in advance.