Problem calling a sub from a sub

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
 
C

Chris Dunaway

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.
 
G

Guest

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.
 
G

Guest

The same problem occurs when you run 3/4 trust, but on these computers they
are running full trust.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top