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