L
Laura Stern
Guest
You either have to have the BindingSource’s AutoUpdate property set to true (or is it AutoSync? Look it up.. I’m not at work to look). Or you need to subscribe to the AddNew event of the BindingSource. In there you would propagate the changes to your temp-table. Unless the changes are propagated to the data source, (the TT) they will not stick. This is all documented in the GUI for .Net book. Just as a general rule, I would also recommend binding to a query on your temp-table rather than to the DataSet since you’re only showing records from a single table. Bind to a DataSet if you have multiple tables and you want to see them all in the grid hierarchically. It’s a bit more efficient that way.
Continue reading...
Continue reading...