Exemplo n.º 1
0
        private void loadSupervisor()
        {
            Dictionary <int, string> comboSourceSuper = Crud_Proyectos.getEmpleados();

            if (comboSourceSuper.Count > 0)
            {
                comBox_supervisor.DataSource = new BindingSource(comboSourceSuper, null);
            }
        }
Exemplo n.º 2
0
        private void loadResponsables()
        {
            Dictionary <int, string> comboSource = Crud_Proyectos.getEmpleados();

            if (comboSource.Count > 0)
            {
                comBox_responsable.DataSource = new BindingSource(comboSource, null);
            }
        }