1. You open the form in design mode, and add a combo box, or you activate an existing one;
2. When the property sheet for combo bos is not active, activate it (right-click on combo, select Properties);
3. Activate Data tab in Property Sheet;
4. For property Row Source Type select "Table/Query";
5. Into field Row Source enter SQL string like
Code:
SELECT pt.[ID], pt.[PositionName] FROM PositionTable pt ORDER BY 2;
;
6. Set property Bound Column to 1;
7. Activate Format tab of Property Sheet;
8. Set property Column Count to 2;
9. Set property Column Widths to 0cm;2cm (the width of 2nd column may be any reasonable non-zero numeric value - it doesn't really affect anything).
That's all!