threads

mikerob283

Member
Joined
Feb 15, 2005
Messages
12
Programming Experience
Beginner
thread runs a method

the method checks and verify's a username and password

does the thread just automatically stop after the method is complete or do i need to add something at the end of the method to close, stop, or abort the thread so it releases it's memory? or does the thread just stop automatically?

whats the best way to release memory or anything? I want this to be as clean a running program as possible.
 
For so far I know, it will just run your method ones. I don't think you have to close it. But why don't you use "raiseEvent" to call you wanted method? I think that's a lot easier than threads.
 
Back
Top