Problem calling a sub from a sub

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a vb form which calls a thread which makes webrequest calls into the
internet, processes the info, and passes the info to another routine in
another sub. It is stopping when it tries to make the sub call. The call is
within itself or a sub in another dll.
This problem is showing about 50%of the computers around the world. Is this
an anti-virus or virus affecting the call to another sub or is it a threading
problem.
I have tried either Thread = New System.Threading.Thread(AddressOf mySub) or
Dim cntTimer As New System.Threading.Timer(New TimerCallback(AddressOf
mycounter), Nothing, 0, 5000) and no luck. The webrequest is about a rate of
1 second.
Thanks.
Rob
 
another sub. It is stopping when it tries to make the sub call. The call is

What exactly is the problem? Are you getting an error? Is the program
crashing?

--
Chris

dunawayc[AT]sbcglobal_lunchmeat_[DOT]net

To send me an E-mail, remove the "[", "]", underscores ,lunchmeat, and
replace certain words in my E-Mail address.
 
The thread stops or hangs at the sub with no errors.

Chris Dunaway" <"dunawayc[[at]_lunchmeat said:
another sub. It is stopping when it tries to make the sub call. The call is

What exactly is the problem? Are you getting an error? Is the program
crashing?

--
Chris

dunawayc[AT]sbcglobal_lunchmeat_[DOT]net

To send me an E-mail, remove the "[", "]", underscores ,lunchmeat, and
replace certain words in my E-Mail address.
 
The same problem occurs when you run 3/4 trust, but on these computers they
are running full trust.
 
Back
Top