on my form i have a GridView with add/edit/delete rows disabled, i need it to show blank rows for the unused size rather than blank background... something like invoices
thanks
Printable View
on my form i have a GridView with add/edit/delete rows disabled, i need it to show blank rows for the unused size rather than blank background... something like invoices
thanks
That's not really how a DataGridView works. If you want a specific number of rows in the grid then you have to add a specific number of rows. What happens if the user changes the size of the grid though? You can't just make extra rows appear and disappear automatically. You may be able to write code to add and remove rows manually but I'm not sure how well it would behave.