Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
D.Wheeler3GADA
285 Views, 2 Replies

allow for command execution in rules

I am unsure of the coding to allow for an application command to be executed before invoking the next ilogic command in a rule.

 

I am trying to launch the measure command from within a rule and allow the user to take a measurement and exit out of the measurement dialog box before the rule continues and displays an input box...  I believe this is possible, and any help is appreciated.

Ralf_Krieg
in reply to: D.Wheeler3GADA

Hello

 

Try it with

ThisApplication.CommandManager.ControlDefinitions("AppMeasureDistanceCmd").Execute2(True)

R. Krieg
RKW Solutions
www.rkw-solutions.com
D.Wheeler3GADA
in reply to: Ralf_Krieg

That did the trick!! Thank you.