Best practice question:
Q: At the end of my Subs, should I BOTH close the open Recordset & then "Set rs = Nothing".
Or, is "Set rs = Nothing" alone sufficient? (I have a mixed bag, currently)
Private Sub btnSave_Click()
Dim db As Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("Desc_Mfg_Norm", dbOpenTable)
'do stuff
Exit:
rs.Close
Set rs = Nothing
Set db = Nothing
exit sub