View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Patrick Molloy Patrick Molloy is offline
external usenet poster
 
Posts: 1,049
Default Memory Management in VBA

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

eg

SET xyzObject = NOTHING



"GM" wrote in message
...
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