How to stop Nav from continue process and wait for the trigger in c#.
The situation is like this:
1. I need to pass in some value to c# to process.
2. In the c#, there is a web service which will process the value I pass in from nav.
3. The process value will return in delegate event trigger in c#.
4. Then the value will return to nav when the delegate event is triggered.
The problem is, nav will continue to run even the value is not return yet from the c#. Is there anyway I can stop nav from processing and wait until the value from c# is return?
*This post is locked for comments