Hi Everyone, I'm having an issue on a VM (Windows 10 Enterprise , 64 bit, 12 GB Ram). I'm using a timer to start a windows login application, but for some reason timer event never runs. Any idea about this issue.
I ran same application on a different VM (Windows 10 Enterprise,, 64 bit, 12 GB Ram ) and it works as expected.
I have the following instruction , in the open event
Timer(2)
But my code in the event timer never runs. But again, I have the same code in a different VM and my app is working fine.
event timer;
application app
app = GetApplication()
app.PostEvent('ue_logon')
Timer(0)
end event
Q1: Did you try placing a break point on the Window Timer Event and run the App via the debugger to see if actually gets there?
Q2: Same as #1 but on the Timer() command. Also, does you code check the return code on the Timer() command?