Multi Column ComboBox

I am trying to load a table into a combobox with 2 columns. Is this possible? I can load 1 column.

Combobox only takes a string (or a string array). You’ll need to concatenate the data from each record field into a single string, then add that string to the combobox using the addrow method.