Hi,
is there still any possibility to use a Timer (built-in or as an automation object) in the RoleTailored Client?
We have one solution (NAV 5.0 SP1) that uses Timer (Automation object) for regular checking whether there are any new data in a table. We want to port this solution to NAV 2009. In the Classic Client (SQL) everything works fine, but in the RoleTailored Client we don't get any events from Timer.
Any ideas how to work it around?
0
Comments
GreenSmile
RIS Plus, LLC
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Set SingleInstance to Yes and added a call to this codeunit to an action on a page.
Now when I click on that action in RTC - I get the CommentLine table filled in with comments just fine.
Conclusion - events do work on RTC, just make sure you don't write any code that interacts with user from the event triggers (e.g. MESSAGE('I am working!!') or FORM.RUN(5052)) - this will shut down the events.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.