Hi everyone,
I have a c++ DLL and inside the DLL one QTimer is present. I am trying to start the timer by calling a function from C# application. But it is not working.
Is it true that QTimer requires an event loop to work ? Is C# application has an event loop ? How I will make it work ?
Please help me.
thanks.


Reply With Quote


Instead of calling exec(), you can periodically call
rocessEvents() instead of QCoreApplication::exec(), but still it is not working. I tried QCoreApplication::hasPendingEvents() and there was no pending events.
Bookmarks