Ejemplo n.º 1
0
        private void mnuNewDepreciation_Click(object sender, System.EventArgs e)
        {
            Form newForm = new frmDepreciation();

            newForm.MdiParent = this;
            newForm.Show();
        }
Ejemplo n.º 2
0
        private void btnDepreciation_Click(object sender, EventArgs e)
        {
            frmDepreciation form = new frmDepreciation();

            this.Hide();
            form.ShowDialog();
        }
Ejemplo n.º 3
0
        private void btnDepreciation_Click(object sender, EventArgs e)
        {
            frmDepreciation form = new frmDepreciation();

            form.Show();
        }
Ejemplo n.º 4
0
 private void btnCalculateDepreciation_Click(object sender, System.EventArgs e)
 {
     Form newForm = new frmDepreciation();
     newForm.Show();
 }
Ejemplo n.º 5
0
 private void btnDepreciation_Click(object sender, EventArgs e)
 {
     frmDepreciation form = new frmDepreciation();
     form.Show();
 }
Ejemplo n.º 6
0
 private void mnuNewDepreciation_Click(object sender, System.EventArgs e)
 {
     Form newForm = new frmDepreciation();
     newForm.MdiParent = this;
     newForm.Show();
 }
Ejemplo n.º 7
0
        private void btnCalculateDepreciation_Click(object sender, System.EventArgs e)
        {
            Form newForm = new frmDepreciation();

            newForm.Show();
        }