private void btnAddNewTopic_Click(object sender, EventArgs e)
        {
            Form AddTopicsForm = new AddTopicsForm(connection);

            AddTopicsForm.Show();
            this.Enabled = false;
            this.Hide();
        }
Example #2
0
        private void btnAddTopic_Click(object sender, EventArgs e)
        {
            Form AddTopicsForm = new AddTopicsForm(connection);

            AddTopicsForm.Show();
        }