Hello
I am having some trouble with a datagridview in my program
i am using this command to add some items to my columns in the datagridview
BUT i have 10+ columns and, lets say i wanted to add something to column 4 and not 1 and 2 as i do in the code aboveCode:datagridview1.Rows.Insert(0, .Item(0), .Item(1))
I have tried this, but this just leaves the first columns blank which doesnt work for me.
With that code i can put my items into column 3 and 4, but this also erases whats already in column 1 and 2Code:datagridview1.Rows.Insert(0, "", "", .Item(0), .Item(1))
Any help?




Reply With Quote
