set the rowsource of the combo to include the three fields
select Etchlot,[Part Number],[Work Order] from TableB
set the following properties
column count 3
bound column 1
in the after update of the combo
private sub comb1_afterUpdate()
me.txt1=me.combo1 'etchlot
me.txt2=me.combo1.column(1) 'partnumber
me.txt3=me.combo1.column(2) 'work order
end sub