Link to home
Start Free TrialLog in
Avatar of jrscherer
jrschererFlag for United States of America

asked on

How to get rid of the Edit Row (lowest row) in a DataGridView

I use a DataGridRow in VB2005. It works great.
I edit programmatically all cells, so I don't need the edit row, the one with the * in the row header.
How do I get rid of this at run time?
Jack.net
ASKER CERTIFIED SOLUTION
Avatar of Vaxman2
Vaxman2

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gangwisch
gangwisch

datagridview1.rows.removeat(datagridview1.rows.count-1)
Avatar of jrscherer

ASKER

Vaxman2,
This is exactly what I was looking for. Thnx Jack.net