I had a problem with my VB IDE crashing when stopping
my JabberCOM program. The fix i found is as folows.
Before exiting your program do the following
Public With Events JSession as JabberSession
.
.
.
'Just before the end of your program
If JSession.Active Then JSession.DoDisconnect
DoEvents
Also, under no circumstances should you use the End
function or the Stop button in the IDE. End does not
allow normal termination such as Class_Terminate
functions and for some reason JabberCOM is not shut
down properly.
Also, whenever I set JSession = Nothing, I get a BSoD,
so I reccommend not doing so.
Hope this helped.
Logged In: NO
I had the same problem, if you really want to force the exit by
using End, you have wait for at least 100 milisecons, before
end(After call JabberSession.DoDisconnect statement). You
will never get this problem.