Ex. tbl_item --------------------------------------------- Barcode | item_name | item_qty | item_price 1234555 | Chips | 95 | 20 1284588 | Bread | 95 | 20 tbl_invoice ---------------------------------------------- invoice_id | item_name | item_qty | total_price 1000000 | Chips | 5 | 100 1000000 | Bread | 5 | 100 Scenario: When the item is scanned the qty should deduct based on amount of qty. then save in tbl_invoice and put in DataGridView. When the transaction is canceled the qty should return to the specific item in tbl_item. Private Sub btn_cancel_Click(sender As Object, e As EventArgs) Handles btn_cancel.Click What so I do? Thank you. End Sub
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)