private void cargaDatos() { try { ComboBoxManager cbm = new ComboBoxManager(); string chofer_seleccionado = ""; string automovil_seleccionado = ""; if (SingletonUsuario.Instance.rol_actual.nombre == "Chofer") { chofer_seleccionado = cargaChoferSeleccionado(SingletonUsuario.Instance.id); comboBoxChofer.Enabled = false; automovil_seleccionado = cargaAutomovilSeleccionado(SingletonUsuario.Instance.id); } comboBoxChofer = cbm.Chofer(comboBoxChofer, chofer_seleccionado); comboBoxAutomovil = cbm.Automovil(comboBoxAutomovil, automovil_seleccionado); comboBoxCliente = cbm.Cliente(comboBoxCliente); comboBoxTurno = cbm.Turno(comboBoxTurno); dateTimePickerFechaInicio.Value = FechaSistema.getDateTime(); dateTimePickerFechaFin.Value = FechaSistema.getDateTime(); dateTimePickerFechaInicio.CustomFormat = "dd/MM/yyyy - HH:mm"; dateTimePickerFechaFin.CustomFormat = "dd/MM/yyyy - HH:mm"; } catch (Exception exception) { throw new Exception(exception.Message); } }
private void cargaDatos() { try { ComboBoxManager cbm = new ComboBoxManager(); comboBoxCliente = cbm.Cliente(comboBoxCliente); dateTimePickerFecha.CustomFormat = "MM/yyyy"; dateTimePickerFecha.ShowUpDown = true; dateTimePickerFecha.Value = FechaSistema.getDateTime(); } catch (Exception exception) { MessageBox.Show(exception.Message, "Error en facturacion", MessageBoxButtons.OK, MessageBoxIcon.Error); } }