Hey John, I changed my code to this:
Dim aa As DataGridViewComboBoxColumn
aa = DataGridView1.Columns.Item(0)
aa.Items.AddRange("Good", "Bad", "Ugly")
aa.DefaultCellStyle.NullValue = "Good"
And it compiled and ran fine, but the combo boxes did not have any data in them as expected. The way my form is setup is like this:
Header column (the one with the arrow denoting which row your on), then the next column over is where my combo boxes are. So it should be column 1, item 1, correct? Maybe that is why it isn't working to show my data. [EDIT] John, I also added the last line to my code and it shows the value Good, but I can't see the rest of the entries that should be there. And I checked the column number and it should be Column1.
Any help?
TIA