|
-
Jan 24th, 2005, 11:23 AM
#1
Thread Starter
Hyperactive Member
Thread doesn't do anything
I have a Sub called SendMessages() that is supposed to do some database work and send an email message in my web app.
Now if I call it directly, it does what it should. I've now been trying to place this Sub into a thread of its own..
i.e
Dim sendMessageThread as New Thread(AddressOf SendMessages)
sendMessageThread.Start()
But the page ends up doing nothing...
Any ideas?
He who has conquered himself, is far greater than he who has conquered a thousand men... - The Buddha
-
Jan 24th, 2005, 12:05 PM
#2
Frenzied Member
Re: Thread doesn't do anything
Is your SendMessages sub within the same class or in another class?
Have you stepped through your code to see if the thread is entering the sub?
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
-
Jan 24th, 2005, 12:36 PM
#3
Thread Starter
Hyperactive Member
Re: Thread doesn't do anything
It is in the same class. I'm not using VS.NET so I can't do any stepping...
The thread is being called from Page_Load()
He who has conquered himself, is far greater than he who has conquered a thousand men... - The Buddha
-
Jan 24th, 2005, 01:59 PM
#4
Frenzied Member
Re: Thread doesn't do anything
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
-
Apr 11th, 2005, 10:02 AM
#5
Thread Starter
Hyperactive Member
Re: Thread doesn't do anything
As far as it seems, the Sub ReceiveMessages is not being called at all!!!
Here is my code
Sub Page_Load()
Dim NewThread As Thread = New Thread(AddressOf ReceiveMessages)
NewThread.Priority = ThreadPriority.Lowest
NewThread.Start()
End Sub
Public Sub ReceiveMessages()
' Code here to connect to pop3 server and loop through messages
End Sub
He who has conquered himself, is far greater than he who has conquered a thousand men... - The Buddha
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
|