Question : change Background color of Comobox

I have a combobox in my datagrid and need to change the background color.  How can I change the backcolor.  

thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
Dim ComboTextCol As New DataGridComboBoxColumn
        ComboTextCol.MappingName = "bytNote" 'must be from the grid table...
        ComboTextCol.HeaderText = "Type"
        ComboTextCol.NullText = ""
        ComboTextCol.Width = 80
        ComboTextCol.ColumnComboBox.DataSource = dsSearch.Tables("Notelist").DefaultView 'dv;
        ComboTextCol.ColumnComboBox.DisplayMember = "strType"
        ComboTextCol.ColumnComboBox.ValueMember = "lngType"
        tablestyle.PreferredRowHeight = ComboTextCol.ColumnComboBox.Height + 2
        tablestyle.GridColumnStyles.Add(ComboTextCol)

Answer : change Background color of Comobox

ComboTextCol.BackColor = Color.Moccasin
Random Solutions  
 
programming4us programming4us