コード例 #1
0
        //close this and open fixtures form
        public void closeAndOpenFixturesForm()
        {
            this.Close();

            frmFixtures lastForm = new frmFixtures();

            lastForm.Show();
        }
コード例 #2
0
        private void FixturesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();

            frmFixtures nextForm = new frmFixtures(this);

            nextForm.Show();
        }