Anyone have sample coding on how to create a datagrid combobox ???
There is an example on Codeproject.com . It's so easy . You just add the control (combobox or whatever) in the controls collection of the datagrid .This is the basic code VB Code: Dim c As New ComboBox Me.DataGrid1.Controls.Add(c)
Dim c As New ComboBox Me.DataGrid1.Controls.Add(c)
Forum Rules