private void OnLoad(object sender, EventArgs e) { config.CargarDatos(); cuentas = new Cuentas(config); departamentos = new Departamentos(config); fondoAsignado.Text = config.DarMonto().ToString("N2"); cuentas.CargarDatos(); departamentos.CargarDatos(); List <string> deptos = departamentos.DarDeptos(); foreach (string s in deptos) { ListViewGroup grp = new ListViewGroup(); grp.Header = s; listFacturas.Groups.Add(grp); for (int i = 0; i < deptos.Count(); ++i) { ListViewItem lvItem = new ListViewItem(); lvItem.Text = "Item " + i; lvItem.Group = grp; listFacturas.Items.Add(lvItem); } } }
private void OnLoad(object sender, EventArgs e) { if (cuentas.DarConteo() > 0) { cuentas.CargarDatos(); List <string> cuentasLista = cuentas.DarCuentas(); foreach (var s in cuentasLista) { cuenta.AutoCompleteCustomSource.Add(s); } } if (deptos.DarConteo() > 0) { deptos.CargarDatos(); List <string> deptosLista = deptos.DarDeptos(); foreach (var s in deptosLista) { departamentos.AutoCompleteCustomSource.Add(s); } } }