示例#1
0
        // opens up a form to edit client information
        private void btnEditClient_Click(object sender, EventArgs e)
        {
            AddClient form = new AddClient(clientID);

            form.ShowDialog();
            this.Close();
        }
示例#2
0
        //brings the user to the addedit screen with the screen empty for an addition
        private void btnAddClient_Click(object sender, EventArgs e)
        {
            AddClient form = new AddClient();

            form.ShowDialog();
        }