Join that table in your query then. Select the numeric value as "LetterNumericValue" and the actual letter as "LetterValue".
Then you can use that in your vb.code.Code:select twn.number as "LetterNumericValue", twl.letter as "LetterValue" from tablewithnumber as twn join tablewithletters as twl on twn.number = twl.number
vb Code:
me.combobox1.DataSource = mydataSource me.combobox1.displaymember = "LetterNumericValue" me.combobox1.valuemember = "LetterValue"
Justin




Reply With Quote