Example #1
0
        private void YellowPartEntered(String sPart)
        {
            if (uxWhiteQty.Text != "")
            {
                yPart = sPart.Trim();
                uxYellowPartEnter.Text = "Clear";
                uxYellowPart.Text      = yPart;
                uxYellowPart.Enabled   = false;
                MyRFGun.GoodReadNotification();
            }
            else
            {
                uxMessage.Text = "Please Scan White Qty First";
                MyRFGun.FailNotification();
            }

            //Need to compare the yellow and the White part #
        }