Ejemplo n.º 1
0
 private void pbInvoice_Click(object sender, EventArgs e)
 {
     Scanner scan = new Scanner("Scan Invoice Number.");
     if (scan.ShowDialog() == DialogResult.OK)
     {
         CERPInventory.Invoice = scan.tbBarcode.Text;
         tbInvoice.Text = CERPInventory.Invoice;
     }
 }
Ejemplo n.º 2
0
 private void pbMatLot_Click(object sender, EventArgs e)
 {
     Scanner scan = new Scanner("Scan Material Lot Number.");
     if (scan.ShowDialog() == DialogResult.OK)
     {
         CERPInventory.MatLot = scan.tbBarcode.Text;
         tbMatLot.Text = CERPInventory.MatLot;
     }
 }
Ejemplo n.º 3
0
 // Save a reference to the form so it can
 // be notified when messages are received.
 public MsgWindow(Scanner msgform)
 {
     this.msgform = msgform;
 }
Ejemplo n.º 4
0
        private void pbDetails_Click(object sender, EventArgs e)
        {
            if (!has_item)
            {
                MessageBox.Show("No item was scanned yet.");
                Scanner scan = new Scanner("Scan Item Barcode");
                if (scan.ShowDialog() == DialogResult.OK)
                {
                    CERPInventory.BarCode = scan.tbBarcode.Text;
                    if (GetItemDetails() > 0)
                    {
                        has_item = true;

                        Details det = new Details();
                        det.ShowDialog();
                    }
                }
            }
            else
            {
                Details det = new Details();
                det.ShowDialog();
            }
        }