|
-
Oct 6th, 2000, 01:36 AM
#1
Thread Starter
Member
hello everybody! please, help me with such situation:
I use TapiLine ActiveX (it initializes telephone line) and open new thread in my app. so when I terminate thread my program hangs: I can close the form but I can't quit app. if I don't initialize ActiveX, thread terminates and app quits normally. whats the matter???
thanx!
Arnas
-
Oct 6th, 2000, 01:54 AM
#2
Hyperactive Member
You have a variable keeping a reference to the ActiveX
Just a guess. You probably have a global or module leve variable holding the reference to your ActiveX control or to something related to it.
If you do, simply set that varialbe to Nothing when Unloading the form (i.e. in the form's Unload event).
It would be something like:
Code:
Set myVar = Nothing
If not, someone else may think of the answer. I ahve never used that ActiveX control.
Regards
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|