Thanks for the help guys. This really gives me an idea and how to get this done. I'll post how it went.
Thanks again
Thanks for the help guys. This really gives me an idea and how to get this done. I'll post how it went.
Thanks again
I was able to make this work by connecting the signal inside my thread to the textEdit box.
eg:
GUI APP:
thread = new mythread();
connect(thread, SIGNAL(mysignal(QString)), textEdit, SLOT(append(QString)), Qt::QueuedConnection);
THREAD:
mythread::send(QString str)
{
emit mysignal(str);
}
thanks for the help.
Last edited by freak; 10th May 2006 at 22:49.
Bookmarks