Esempio n. 1
0
        private void button23_Click(object sender, EventArgs e)
        {
            //Packing List Comment

            if (InvPOGrid.RowCount > 0)
            {
                InventoryCommentForm f5 = new InventoryCommentForm(shipComment,"Shipping Comment");
                f5.ShowDialog();
                shipComment = f5.Comment;
            }
        }
Esempio n. 2
0
 private void button12_Click(object sender, EventArgs e)
 {
     if (OpenPOGrid.RowCount > 0)
     {
         InventoryCommentForm f5 = new InventoryCommentForm(invComment,"Inventory Comment");
         f5.ShowDialog();
         invComment = f5.Comment;
        // EditInvComment();
         //button10_Click(sender, e);
     }
 }