This is somewhat vague...
Are you using arrays?
VB Code:
Erase ARRTEMP
Unload All Form when Exiting program
VB Code:
Dim Frm as Form For Each Frm in Forms Unload Frm Set Frm=Nothing Next End
Are you using connections and recordsets (databases access)
VB Code:
Rst.Close Cnn.Close Set Rst = Nothing Set Cnn = Nothing
Wher rst is your recordset object, and cnn is your connection string object...




Reply With Quote