public static void showAs_Update(frmManageProduct.MsgHandler msg, int id) { modRefreshData = msg; var f = new frmProductDataEntry(id); f.ShowDialog(); }
public static void showAs_View(frmManageProduct.MsgHandler msg, int id) { modRefreshData = msg; var f = new frmProductDataEntry(id); f.btnSave.Visible = false; f.ShowDialog(); }
//SHOWING THIS FORM AS_XXXX public static void showAs_Add(frmManageProduct.MsgHandler msg) { modRefreshData = msg; var f = new frmProductDataEntry(); var product = new Product(); f.bindingProduct.Add(product); f.bindingProduct.MoveLast(); f.ShowDialog(); }