Hi,
in my application i am using QCustomEvent and posting that event throug a for loop.
for(usIndex=0;usIndex<4;usIndex++)
{
EnggEvent *engEvent = new EnggEvent();
}
for(usIndex=0;usIndex<4;usIndex++)
{
EnggEvent *engEvent = new EnggEvent();
QApplication::postEvent(receiver, engEvent);
}
To copy to clipboard, switch view to plain text mode
Now the problem is that when i do this the event get called only at the end of the loop i.e when the usIndex becomes 3.
How to solve this problem.
Regards
Raghvendra
Bookmarks