// 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(); }
//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(); }