private void cmbIdEstadoActivo_SelectedIndexChanged(object sender, EventArgs e)
        {
            string id  = cmbIdEstadoActivo.Text;
            int    id2 = Convert.ToInt32(id);

            estadoActivos        = EstadoActivosDAL.obtenerEstadoActivosPorID(id2);
            txtNombreEstado.Text = estadoActivos.NombreEstado;
        }