04-23-2020 07:40 PM
Hi all,
How would one detect when a sequence is being run in development environment vs. in deployment environment?
...and it would be better, in this case, if the distinction was not by station ID or anything specific to the computer.
Thank you in advance!
Solved! Go to Solution.
04-24-2020 07:38 AM
If RunState.IsEditor is true, then you're in development. Otherwise, you're running via some other means, like an operator interface.
04-24-2020 10:12 AM
Worked great! Thank you!