PDA

View Full Version : Problem in creating thread in GUI application



jyoti kumar
15th May 2006, 12:08
I am not able to create a thread.
Infact, when I am creating the application is not executing & there are no errors even.
PSSController is the main class where I am creating the thread.
CFacade is the window class, with which I am creating main window for my application.

wysota
15th May 2006, 12:43
You forgot to call the base class constructor for your thread.

jyoti kumar
15th May 2006, 13:05
You forgot to call the base class constructor for your thread.


Thanks a lot, Now I am able to create the thread.