(I'll make this sweat and short, writting in class)
Okay so I am working on a sudoku program, and am using a dataGridView for the gameboard. But I need to know how to create different boarders for the cells so that I can make up the 4 black lines that seperate the the 81 squares into 9 seperate 9x9 clusters, but I have no clue how to do this. I created the columns for the gameboard threw the form builder and the rows with
for (int i = 0; i < 9; i++) //adds the rows to dataGridView
{
dataGridView1.Rows.Add();
}
So how would I create these borers (hopefully this makes sense again I am rushing this, professor is getting suspecious of my activities right now)