private void BtnAdd_Click(object sender, EventArgs e) { AddClientForm clientformB = new AddClientForm(); clientformB.Show(); this.Hide(); clientformB.FormClosed += ClientForm_FormClosed; }
private void BtnAddClient_Click(object sender, EventArgs e) { AddClientForm addClientForm = new AddClientForm(); addClientForm.Show(); this.Hide(); addClientForm.FormClosed += addClientForm_formclosed; }
private void AdaugareClientToolStripMenuItem_Click(object sender, EventArgs e) { AddClientForm form = new AddClientForm(this); form.Show(); }