Reputation: 21
I am trying to create a datagridview with 25 rows containing three columns and next option for going to next records of a local database,containing employee name id.employee and view profile button.but cant add a single row from the tool box..how is it possible to do in the design form?
Upvotes: 2
Views: 5927
Reputation: 11233
DataGridView
control.Form_Load
event write:datagridView1.RowCount = 25;
Upvotes: 4