with this infinite loop you blocks main thread.
there are two solutions:while (i<I_Max && PROCESS_IS_RUNNING)
{
....
}
1. put qApp->processEvent() in that loop.
2. put this loop in separate thread.
I also suggest you to read this.
with this infinite loop you blocks main thread.
there are two solutions:while (i<I_Max && PROCESS_IS_RUNNING)
{
....
}
1. put qApp->processEvent() in that loop.
2. put this loop in separate thread.
I also suggest you to read this.
Qt Assistant -- rocks!
please, use tags [CODE] & [/CODE].
Bookmarks