Ejemplo n.º 1
0
        private void CertifiedParties_Click(object sender, EventArgs e)
        {
            //Load this view
            CertifiedParty CertifiedParty = new CertifiedParty();

            this.Hide();
            CertifiedParty.ShowDialog();
            this.Close();
        }
Ejemplo n.º 2
0
        private void certifiedPartiesMenuItem_Click(object sender, EventArgs e)
        {
            //Close the current view
            Form tmp = this.FindForm();

            tmp.Close();
            tmp.Dispose();

            //Open a new one
            CertifiedParty CertifiedParty = new CertifiedParty();

            CertifiedParty.ShowDialog();
        }