Nokia Active Member Licensed User Longtime User Mar 14, 2016 #1 I am loading string data that are names of companies and I need their ID’s as well, so when processing the data I can use the ID field and not the company name. Any suggestions on how I can do this? Can the combobox have more than one column?
I am loading string data that are names of companies and I need their ID’s as well, so when processing the data I can use the ID field and not the company name. Any suggestions on how I can do this? Can the combobox have more than one column?
Erel B4X founder Staff member Licensed User Longtime User Mar 14, 2016 #2 Use a Map to map between the ids and the company names. ComboBox can only show a single column. Upvote 0
Nokia Active Member Licensed User Longtime User Mar 14, 2016 #3 Erel said: Use a Map to map between the ids and the company names. ComboBox can only show a single column. Click to expand... how would I use the map with the combo box? is their any examples? Upvote 0
Erel said: Use a Map to map between the ids and the company names. ComboBox can only show a single column. Click to expand... how would I use the map with the combo box? is their any examples?
Erel B4X founder Staff member Licensed User Longtime User Mar 15, 2016 #4 Tutorial about maps: Map Collection - The most useful collection. Upvote 0