DataGridViewComboBoxColumn seperate items

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like to have separate items in the DataGridViewComboBoxColumn for each
row,

For an example look at the vs2005 query builder.
Column(0) is the fieldName and contains a list of the fields from the table
named in column(2). If the table selected in column(2) of a particular row is
changed the available items in column(0) reflect the available fields for
that table.
And if there isn’t a table selected in column(2) then the items available in
column(0) is the full field list for all table.

How would I do something similar (really really similar)?
 
Gabe,

In my idea with very very much work, or maybe by hiring a team of developers
who are able to do that by rebuilding almost complete datagridview or
building a new complex data control for you.

This is in my opininion so far from the standard behaviour that you can
search on Internet. I give you a chance of 0,00% that you can get this free.

The Datagrid is rendered for us enduser developers as one reflection from
the underlying datatable, not row by row.

Just my thought,

Cor
 
Cor,

I think #18 in the Appendix of the DataGridView FAQ.doc has the solution I'm
looking for (just found it). Once (If?) I get it working in vb.net I'll
re-post with code.

thanks again,
 
Back
Top