bostonfrog
Programmer
In the general declaration of my form I
. In the form's load event, I
Why do I get an error message in the form's close event that an object variable is not set, when I put the following code into the form's close event:
Isn't the value of the variable "rs" already stored after the form was loaded into memory? Thanks.
-- Michel
Code:
Dim Rs as DAO.Recordset
Code:
Set Rs = Me.RecordSetClone
Code:
Set rs = Nothing
rs.close
Isn't the value of the variable "rs" already stored after the form was loaded into memory? Thanks.
-- Michel