Using VS2005, LLBLGen 1.2005.1, WinForms 2.0
Just wanted a sanity check if you don't mind.
When adding a new entity to a databound entitycollection, is this the correct way to set the current position to the newly added entity?
Dim newCustomer As New EntityClasses.CustomerEntity
Me.BindingSource1.Position = Me.ecCustomer.Add(newCustomer)
It seems obvious now, but you don't want to know how many variations I tried
until I hit on this one.