Hello. Well the title pretty much says it all, but just to add: I know you can use the keyword Erase for array variables and UDTs, correct me if I'm wrong though, but how do you do that for the non-array ones?
And one more thing, suppose I have an array of Objects, now which one of the following would you do on the Form_Unload():
Or,
Which one is actually safer to use? Thank you.
And one more thing, suppose I have an array of Objects, now which one of the following would you do on the Form_Unload():
vb Code:
For Obj in ArrayUDT Set Obj = Nothing Next Obj
Or,
vb Code:
Erase ArrayUDT()
Which one is actually safer to use? Thank you.