01-20-2005 09:25 AM
01-26-2005 04:31 PM
01-27-2005 03:06 AM
01-31-2005 09:47 AM
02-03-2005 11:05 AM
02-07-2005 07:08 AM
02-08-2005 11:09 AM
@Grefyne wrote:
Thanks Michael, this has fixed the problem. I also communicated this to a person in our software division that I had been working on the problem with. He had the following to say (if it's any help)
---
If that's the workaround they suggest, It sounds like some of their cleanup code is defined in a class destructor. Destructors only get called when the garbage collector runs. Note their mistake: Never define vital cleanup code in a .NET class destructor… Use the Disposable pattern of defining the cleanup in the protected Dispose(bool) method and call the dispose method from the destructor.