rowsource formatting

Ethereal

Warcraft III Player
Local time
Today, 14:04
Joined
Jan 17, 2006
Messages
99
I know that for 1 column in a combo box you can say cboBox = a;b;c;d;e;f; But for my situation i need to have multiple columns... Does anybody know what the string should look like for multiple columns of values ?
 
well i would, but i am browsing for files, I need the full filepath in my table, but only the filename to appear in the box for selection
 
Set the column count property for the combobox to the number of columns you require, then format the string as normal.

e.g. clumn count = 2
RowSource= "a";"dog";"b";"cat";"c";"goat";"d";"sheep"

gives combo with

a | dog
b | cat
c | goat
d | sheep

Is that what you meant ?

HTH

Regards

John
 

Users who are viewing this thread

Back
Top Bottom