private void cBoxAccount_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (cBoxAccount.Text == "Personal")
     {
         PropertyAccountingPersonal personal = new PropertyAccountingPersonal();
         personal.Show();
         Hide();
     }
     else
     {
         //TODO: NOTHING
     }
 }
        private void metroTile13_Click(object sender, EventArgs e)
        {
            PropertyAccountingPersonal accountPersonal = new PropertyAccountingPersonal();

            accountPersonal.ShowDialog();
        }
Beispiel #3
0
        private void btn_personal_Click(object sender, EventArgs e)
        {
            PropertyAccountingPersonal fpersonal = new PropertyAccountingPersonal();

            fpersonal.ShowDialog();
        }