Memory Management in VBA

G

GM

hi,
Is there any way to flush the memory in VBA?
I know the use of nothing, which has been already incorporated in my code.
any thing on application object?

Thanks,
GM
 
P

Patrick Molloy

if you have created objects, release them by setting to nothing

eg

SET xyzObject = NOTHING
 
Top