Hi!
I've the following code in a push button slot.
if(Device::Device_AutoObj_DataLog.NoOfExportedDatalogs == 0)
{
PresentDialog( Datalog_GUI::AutoObj_NoLogs, null, null, null, null, null, null, null, null, false );
}
else
{
PresentDialog( Datalog_GUI::AutObj_DLogExportInProgress, null, null, null, null, null, null, null, null, false );
Timer.Enabled = true;
}
Earlier this timer slot got triggered and executed. Now it is not getting triggered. I've set timer period to 1000ms. Do you have any guess what it causes the timer to not expire and not triggering the slot?
Thank you
Thanushiyah