INTERACT FORUM
Windows => Plug-in Development => Topic started by: Matt on April 24, 2002, 06:56:50 am
-
Hey Rhino (and anybody else),
I did some more digging, and it looks like VB doesn't like this:
Public g_Interface As BusyBox.BusyBoxCtrl
Set g_Interface = Me
I think the problem is that Set(...) bumps the reference count to 2 (MJ is the first) so that when we release the control, the reference count is still at one, so it isn't destroyed.
Would it be possible to code around global references? Maybe a public GetInterface() function, or some type of pointer or non-reference counted Set(...)
Otherwise, we'll add a function "Terminate" (or similar) that MJ will call if it exists on exit.
Let us know...
-Matt
-
Well how about that ... it worked!
Unfortunately I still get crashes as my timers are still active when the app is exiting 
Without a terminate function I can't turn them off.
Also other people may have things like files/sockets open and would like to terminate gracefully.
So we still do need a terminate function Matt.
-
It'll be in the next build. (hopefully out within an hour)
void Terminate()
Hopefully it does the trick. Thanks for all the help.
-Matt
-
Rhino,
did you try build 8.0.257? Terminate function is in it.
Nikolay
-
Nikolay ... terminate works a treat