Hi All,

Hope you all fine? Can I ask you all a quick question? I`ve been trying to
get concurrency to work for my project in VB2005. I have the following code,
which to be fair i`ve got so lost with but here it is:

Private Sub BTADSL_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.MasterDBDataSet.EnforceConstraints = False
Me.M_BTAnalogueLinesTableAdapter.Fill(Me.MasterDBDataSet.M_BTAnalogueLines)
Me.S_LocationsTableAdapter.Fill(Me.MasterDBDataSet.S_Locations)
Me.M_BTADSLTableAdapter.Fill(Me.MasterDBDataSet.M_BTADSL)

'USERS
M_BTADSLDataGridView.DataSource = MasterDBDataSet.M_BTADSL
BTAnalougeLinesIDcomboBox.DataBindings.Add("TEXT",
MasterDBDataSet.M_BTADSL.BTAnalougeLinesIDColumn, "TelephoneNumber")
BTAnalougeLinesIDcomboBox.DataSource = MasterDBDataSet.M_BTADSL
BTAnalougeLinesIDcomboBox.DisplayMember =
"M_BTADSL.S_Locations.TelephoneNumber"
BTAnalougeLinesIDcomboBox.ValueMember = "M_BTADSL.BTAnalougeLinesID"
LocationsIDcomboBox.DataBindings.Add("TEXT",
MasterDBDataSet.M_BTADSL.LocationsIDColumn, "Location")
Dim cmBTADSL As CurrencyManager
cmBTADSL = Me.BindingContext(MasterDBDataSet, "BTADSL")
cmBTADSL = DirectCast(BindingContext(MasterDBDataSet.M_BTADSL),
CurrencyManager)
'USER

Im so confused with the concurrency thing i just don`t know where to go now.
Could anybody have a look and tell me what a mess i`ve made and how to solve
it? If poss maybe some links?

Many Thanks
A very Comfused Newbie