Example #1
0
        private void buttonAdd_Click(object sender, EventArgs e)
        {
            Globals.IDNo = -1;
            AddEditPayment addedit = new AddEditPayment();

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