I'm looking for the ability to spawn a thread or function so that it returns immediately to the calling line and continue on with the program but continues with the thread work.

For instance, if you call Form.ShowDialog(), it will create a modeless form that has its own UI thread.

Is there a way to do this (no form) without having to declare a TThread class? I guess sort of like an anonymous thread, if that even exists.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I don't know exactly why you don't want to create a TThread subclass, but if you are using the Windows version of C++ Builder you can use the _beginthreadex function (declared in process.h).

link|improve this answer
Thanks for the info - I also found a SO question here that discusses _beginthreadex more in detail: stackoverflow.com/questions/331536/… – 0A0D Dec 17 '09 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.