Memory Management in VBA

  • Thread starter Thread starter GM
  • Start date Start date
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
 
if you have created objects, release them by setting to nothing

eg

SET xyzObject = NOTHING
 
Back
Top