I need help with what is probably a very simple solution.
Display Problem
I want to fill the entire DataGridView box with blank rows and columns when my form starts. Currently, only 1 row displays with the rest of the area with background color.
Printable View
I need help with what is probably a very simple solution.
Display Problem
I want to fill the entire DataGridView box with blank rows and columns when my form starts. Currently, only 1 row displays with the rest of the area with background color.
bump
How many rows/columns? A quick and dirty solution would be to just create a DataTable and file it with empty rows/columns and use that as the datasource for your DGV.
Guess I should have looked a little deeper.
Solved it
DataGridView1.RowCount = 12