Re: multi-threading (General questions)
Thanks for the fast reply! Here's what I'm doing...
Dim sck as WodHttpDLX (sock() is the wodHttpDLX.ocx on the form)
Do While blnStop = False
For Each sck In sock
DoEvents
If blnStop = False Then
If sck.State = StateNotConnected Or sck.State = StateDisconnecting Then
sck.Disconnect
tmrTimeout(sck.Index).Enabled = False
tmrTimeout(sck.Index).interval = Int(INIRead( Timeout )) * 1000
tmrTimeout(sck.Index).Enabled = True
SendTry sck.Index 'Heres the .GET
End If
End If
Next sck
Loop
This works great with Winsock, but crappy with wodHttpDLX, can I even do this with wodHttpDLX? Or am I just gonna have to code it differently? Thanks
Complete thread:
- multi-threading - help, 2007-12-19, 06:30
- Re: multi-threading - wodDamir, 2007-12-19, 08:52
- Re: multi-threading - help, 2007-12-19, 21:20
- Re: multi-threading - woddrazen, 2007-12-19, 22:56
- Re: multi-threading - help, 2007-12-19, 23:06
- Re: multi-threading - woddrazen, 2007-12-19, 22:56
- Re: multi-threading - help, 2007-12-19, 21:20
- Re: multi-threading - wodDamir, 2007-12-19, 08:52