Hi, i have my principal form show below, when i click on the "clientes" item in the menu, i display the second form.
Code: private void menuItem2_Click(object sender, EventArgs e)
{
frmClientes obj = new frmClientes();
pnlContenido.Controls.Add(obj);
}

This is the second form, how can i dispose the second form and back to the principal form when i click on some button, i have use this.form.close() and close all the forms, another thing where do i send project sample for support, thx
