End Google Ads 201810 - BS.net 01 --> I have controls bound to a 1-row DataTable in DataSet myDs:

myNumericUpDown1.DataBindings.Add("Value", myDs, "tbl.field", false, DataSourceUpdateMode.OnPropertyChanged)
etc.

The data is loaded fine. I point DataTable myDt into myDs, catch the ColumnChanged event, and verify after a change that I have:

myDt.Rows[0][e.Column, DataRowVersion.Original] = 2
myDt.Rows[0][e.Column] = 4

...yet GetChanges() returns null. What dumb thing am I missing?
TIA, brian