My program can require any number of user-selected input files depending on the scope of what the user is trying to accomplish. Each of these input files requires a secondary file, also selected by the user. The secondary file contains information which tells the program what to do with the data in the primary file. All of this data is then combined into a single output product. Once the user has specified an input folder (in which all input files must be located), the program compiles lists of available primary and secondary files based on file type. From this perspective, a multi-column/multi-row combo box makes a lot of sense. In the first column, each row contains a dropdown list of available primary files. In the second column, each row contains a dropdown list of available secondary files. The user selects one or more of the primary files to be used (ideally via a checkbox), and then selects the appropriate secondary file in column 2 to be used for each selected primary file.
Apparently this is outside the scope of a standard combobox - I had just wondered if there was a way to extend it's capabilities, or if there was some other control (listbox?) that might accomplish this. I am not familiar with DataGridView - I'll have a look.
Thanks,
Paul Hudgens