Hi Mike,
select in the row source query for combobox both the code and the name of the salesrep. If you don't want both columns displayed, you can hide not-wanted columns. Just set column widths property (like 5cm;0cm - the second column won't be displayed). Then in afterupdate event of combobox write
TextBox=Combobox.column(x)
where x=the number of column where name in combobox is. Columns start counting from 0, so if name is in the second column, use 1 for x.
That way the contents of specified column fom selected item will be shown in text box.
Another suggestion... If you don't need code on the form, just hide that column in the combobox. YOu can still use the bound column property to store the code, but in combobox you can display only names. That way you don't need another text box to show name.
Hope it helps
Mangro