I have a subroutine in my program that takes data in from a PLC and parses it. The first piece of data I get is a barcode from a scanner. If the scanner can not read the barcode it will send me a "?". When I see this I open a new form , a dialog, called Noreadbox which waits for a user to manually enter this data. So my line of code is Noreadbox.ShowDialog(). This works fine, BUT my class also has another subroutine that prints a barcode and applies to a box in-motion. This print subroutine is called when I notice the state of a sensor connected to my PLC changes.
What's happening is that when I get a bad scan, this dialog pops up and my print subroutine is never called. How can I jump out of this parsing routine and print then return back when I finally get a user to input data?
Thanks
What's happening is that when I get a bad scan, this dialog pops up and my print subroutine is never called. How can I jump out of this parsing routine and print then return back when I finally get a user to input data?
Thanks