A family of Microsoft relational database management systems designed for ease of use.
As dbGuy said, lookups should be done using list controls on a form, NOT at the table level (see Evils of Lookup fields).
The combobox wizard, by default, hides the key column from the Rowsource and displays the next column. So given the following Rowsource:
SELECT CompanyCode, CompanyName FROM tblCompany ORDER BY CompanyName;
The other relevant properties would be:
BoundColumn: 1
ColumnCount: 2
ColumnWidths: 0";2"
The Column widths property is the key here. Access will display the first non-zero width field. So the combo list will display just the company name not the code.
If you want to display other attributes of a company on your form see my blog on Displaying Data from Related Tables for techniques to do so.