private void buttonAdd_Click(object sender, EventArgs e) { Globals.IDNo = -1; AddEditProduct addedit = new AddEditProduct(); addedit.ShowDialog(); fillbox(); }
private void buttonEdit_Click(object sender, EventArgs e) { if (listBox1.SelectedIndex != -1) { Globals.IDNo = int.Parse(listBox1.SelectedValue.ToString()); AddEditProduct addedit = new AddEditProduct(); addedit.ShowDialog(); fillbox(); } else { MessageBox.Show("Please select a product from the list"); } }