RE: Release: POP3 Mail-To-Popup
_beginthread(<fnname>, 0, NULL);
Try that, replacing <fnname> with the name of the function that launches the EXE.
For example:
_beginthread(LaunchEXE, 0, NULL);
will call
void LaunchEXE(void *arg)
Hopefully this shows how _beginthread() works.
|