i've just a question about the threads. I've read Iczelion tutorial but i can't get out of this trouble:
Clicking a button of my application, i'm opening a thread using CreateThread API function. After calling CrateThread, (suspended or not) my own thread procedure run just one time, not forever. I really don't understand why.
If any suggestion.. thanks
Angelo
you have to put a loop in your thread procedure otherwise when it returns, ExitThread is called automatically.
thank you very much for the prompt answer ! :) I'm going to try !