public FrmCrearCuentas() { InitializeComponent(); //LLama todos los combo CbClase = new ClassLlenarCbClase(); CbClase.Llenar(CbNivel1, TxtCodigoClase); CbGrupo = new ClassLLenarCbGrupo(); CbGrupo.Llenar(CbNivel2, Convert.ToInt32(CbNivel1.SelectedValue), TxtCodigoGrupo); CbCuenta = new ClassLlenarCbCuenta(); CbCuenta.Llenar(CbNivel3, Convert.ToInt32(CbNivel2.SelectedValue), RbTransaccional3, TxtCodigoCuenta); CbSubCuenta = new ClassLlenarCbSubCuenta(); CbSubCuenta.Llenar(CbNivel4, Convert.ToInt32(CbNivel3.SelectedValue), RbTransaccional4, TxtCodigoSubCuenta); CbAuxiliar = new ClassLlenarCbAuxiliar(); CbAuxiliar.Llenar(CbNivel5, Convert.ToInt32(CbNivel4.SelectedValue), RbTransaccional5, TxtCodigoAuxiliar); }
private void BtnBorrar1_Click(object sender, EventArgs e) { FrmMensajeBorrar = new FrmPreguntaBorrar(); FrmMensajeBorrar.ShowDialog(); if (FrmMensajeBorrar.Estado == true) { try { CADNivel1 CN1 = new CADNivel1(); int IDNivel1 = Convert.ToInt32(CbNivel1.SelectedValue); CN1.DeleteJerar(IDNivel1); Mensajes = new ClassToast(ClassColorAlerta.Alerta.Actualizado.ToString(), "ACTUALIZADO", "Registro borrado correctamente."); // LLENAR CLASE CbClase = new ClassLlenarCbClase(); CbClase.Llenar(CbNivel1, TxtCodigoClase); // LLENAR GRUPO CbGrupo = new ClassLLenarCbGrupo(); CbGrupo.Llenar(CbNivel2, Convert.ToInt32(CbNivel1.SelectedValue), TxtCodigoGrupo); // LLENAR CUENTA CbCuenta = new ClassLlenarCbCuenta(); CbCuenta.Llenar(CbNivel3, Convert.ToInt32(CbNivel2.SelectedValue), RbTransaccional3, TxtCodigoCuenta); // LLENAR SUBCUENTA CbSubCuenta = new ClassLlenarCbSubCuenta(); CbSubCuenta.Llenar(CbNivel4, Convert.ToInt32(CbNivel3.SelectedValue), RbTransaccional4, TxtCodigoSubCuenta); // LLENAR AUXILIAR CbAuxiliar = new ClassLlenarCbAuxiliar(); CbAuxiliar.Llenar(CbNivel5, Convert.ToInt32(CbNivel4.SelectedValue), RbTransaccional5, TxtCodigoAuxiliar); } catch (Exception) { Mensajes = new ClassToast(ClassColorAlerta.Alerta.Error.ToString(), "ERROR", "Problemas entre tablas enlazadas."); } } RefreshCb(1); }