TY
Tyke
March 26, 2004 11:46 AM UTC
The easiest way to remove the row at the bottom is to use a DataView. I add a DataView to my form. The DataGrid is bound to the DataView. And the DataView is bound to the DataSet.
On the DataView, there is a property (AllowNew) that can be turned off.
As for the single select. I am looking for a good way to do that myself. Currently, I am unselecting all rows prior to the selection. For my application, this is fine because there really aren't that many rows.