Deleting a record
http://www.alanddave.com/daveroom/presentations/default.asp
I've been able to add a record using bindingcontext.AddNew() , but deleting escapes me.
The sample code is in vb and I cant change the first line to C#
Dim cmgr AS CurrencyManager = me.BindingContext[me.dsClients, "Client"]
cmgr.RemoveAt(cmgr.Position)
CurrencyManager cmgr = this.Binding....
gives an "implicitly converting BindingMgrBase to CurrencyMgr" message, and I can't find a function to do it explicitly.
what am I missing here?
Bob Hagan

