Combo box- not to start empty

dayv2005

Member
OK I'm new to this forum and I'm very new to progress. I was a .net programmer and with my job now we are using progress. I'm designing the simple app but when i populated the combo box with some db fields. When i run that app, the combo box starts out empty then i click to see the names. What i was wondering was how do i set it to not start empty and have my first field show up in there.

This is probably something simple and i apologize, I'm just new and I'm not sure if this was the right place to post too just let me know.

thanks in advance
 
i now have another question about this thing.

here is my code

FOR EACH Programmers WHERE Programmers.CurrentEmp = TRUE NO-LOCK BY Programmers.LName:
cb-Programmer:ADD-LAST(Programmers.FName + " " + Programmers.LName,Programmers.ProgrammerID).
END.


Now in the db we have fields that come up in the combo box ie beta, unassigned and so on. i was wondering how i would filter those names out from the drop list?
 
Back
Top