Not show last row in datagrid.

J

J

How do I not show the last row in a DataGrid (for C#). The last row
which is empty, but allows for the user to enter info, which will then
add a new row. I would like to prevent this... by showing only the
rows which exist.
 
J

J

How do I not show the last row in a DataGrid (for C#). The last row
which is empty, but allows for the user to enter info, which will then
add a new row. I would like to prevent this... by showing only the
rows which exist.

Thank you. I figured this out:

CurrencyManager cm =
(CurrencyManager)BindingContext[dataGrid1.DataSource, "documents"];
DataView dv = (DataView)cm.List;
dv.AllowNew = false;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top