Example #1
0
        private void butregister_Click(object sender, EventArgs e)
        {
            Addandedituser registuser = new Addandedituser();

            registuser.ShowDialog();
            Addandeditaccount registaccount = new Addandeditaccount(3);

            registaccount.ShowDialog();
        }
Example #2
0
 private void butedit_Click(object sender, EventArgs e)
 {
     if (listaccount.Text != null)
     {
         Addandeditaccount editacc = new Addandeditaccount(listaccount.Text);
         editacc.ShowDialog();
     }
     else
     {
         MessageBox.Show("Please chosing a Account to edit !", "Attention !");
     }
 }
Example #3
0
        private void butadd_Click(object sender, EventArgs e)
        {
            Addandeditaccount addaccount = new Addandeditaccount();

            addaccount.ShowDialog();
        }