Dec 12, 2003 #1 tomcoombs Programmer Aug 14, 2003 65 GB Never seems to get called?!?!? Why would this be? Code : ~ClipControl() { MessageBox.Show("Going...." } Tom
Never seems to get called?!?!? Why would this be? Code : ~ClipControl() { MessageBox.Show("Going...." } Tom
Dec 12, 2003 #2 chiph Programmer Jun 9, 1999 9,878 US You probably need to wait until a garbage collection cycle runs. Or, your class could implement IDisposable. The users of your class would then call .Dispose, which would do the same thing. Chip H. If you want to get the best response to a question, please check out FAQ222-2244 first Upvote 0 Downvote
You probably need to wait until a garbage collection cycle runs. Or, your class could implement IDisposable. The users of your class would then call .Dispose, which would do the same thing. Chip H. If you want to get the best response to a question, please check out FAQ222-2244 first