private void Btn_siguiente_Click(object sender, EventArgs e)
 {
     if (txt_codEncab.Text == "" || Cbo_membresia.Text == "" || Cbo_empleado.Text == "")
     {
         MessageBox.Show("Debe llenar todo los campos. ", "VERIFICAR", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
     else
     {
         conn.Open();
         OdbcCommand codigo = new OdbcCommand();
         codigo.Connection  = conn;
         codigo.CommandText = ("INSERT INTO `renta_encabezado`(`MEMBRESIA`, `EMPLEADO`, `FECHA_INICIO`, `FECHA_FIN`) "
                               + "VALUES ( '" + Cbo_membresia.Text + "' , '" + Cbo_empleado.Text + "', '" + Dtp_inicio.Text + "', '" + Dtp_fin.Text + "' )");
         try
         {
             codigo.ExecuteNonQuery();
             conn.Close();
         }
         catch (OdbcException ex)
         {
             MessageBox.Show(" Error al hacer el INSERT en RENTA_ENCABEZADO. \n\n Error: " + ex.ToString());
             conn.Close();
         }
         //RENTA_DETALLE
         if (frm_renta_Detalle == null)
         {
             frm_renta_Detalle             = new renta_detalle(txt_codEncab.Text, Cbo_membresia.Text, Cbo_empleado.Text, Dtp_inicio.Value, Dtp_fin.Value);
             frm_renta_Detalle.FormClosed += new FormClosedEventHandler(frm_renta_Detalle_FormClosed);
             frm_renta_Detalle.Show();
         }
         else
         {
             frm_renta_Detalle.Activate();
         }
     }
 }
 private void frm_renta_Detalle_FormClosed(Object sender, FormClosedEventArgs e)
 {
     frm_renta_Detalle = null;
 }