Exemple #1
0
        private void AddClient_FormClosed(object sender, FormClosedEventArgs e)
        {
            //we've done this enough times i think you know what it is
            this.Hide();
            AdminControls f = new AdminControls(this.client);

            f.Show();
        }
Exemple #2
0
        private void addAccount_FormClosed(object sender, FormClosedEventArgs e)
        {
            //shows AdminControls form when current is closed
            this.Hide();
            AdminControls f = new AdminControls(this.client);

            f.Show();
        }