private void ToolBorrarSocio_Click(object sender, EventArgs e)
        {
            FormBuscSoc fbs = new FormBuscSoc(1, this);

            fbs.MdiParent     = this;
            fbs.StartPosition = FormStartPosition.CenterScreen;
            fbs.Show();
        }
        private void ToolModificarSocio_Click(object sender, EventArgs e)
        {
            FormBuscSoc fbs = new FormBuscSoc(2, this);

            InsertarFormulario(fbs);
        }