Combo box with Multiple columns

  • Thread starter Thread starter ratethebuilder.co.uk
  • Start date Start date
R

ratethebuilder.co.uk

Hi

I am trying to replicate a drop down combo box in C# that I have in a MS
Access form. The combo box has three columns, each of which comes from a
different field in the database.

I can merge the three fields into one in the stored procedure, but I need
them to be formatted in the combo box as if in a table, eg:

Field 1 Field 2 Field 3
Field 1 Field 2 Field 3
Field 1 Field 2 Field 3

Does anyone know of a tutorial or something that could show me how to
achieve this?

Thanks

Brendan
______________________________________________
Rate your experiences with your UK and Ireland builders at
http://www.ratethebuilder.co.uk
=========================================
 
Hello ratethebuilder.co.uk,

For webform you can use DIV where to custom draw you own table
for winforms look there http://www.codeproject.com/cs/combobox/ and search
by "multi". there are a lot of samples

r> I am trying to replicate a drop down combo box in C# that I have in a
r> MS Access form. The combo box has three columns, each of which comes
r> from a different field in the database.
r>
r> I can merge the three fields into one in the stored procedure, but I
r> need them to be formatted in the combo box as if in a table, eg:
r>
r> Field 1 Field 2 Field 3
r> Field 1 Field 2 Field 3
r> Field 1 Field 2 Field 3
r> Does anyone know of a tutorial or something that could show me how to
r> achieve this?
r>
r> Thanks
r>
r> Brendan
r> ______________________________________________
r> Rate your experiences with your UK and Ireland builders at
r> http://www.ratethebuilder.co.uk
r> =========================================
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Back
Top