Hello Jebenson
Thank you for your quick reply.
According to Wiki, VB 2008 and 2010 Express are compatible with MS Access and SQL Server.
However they only seem to have 'read only' access rights as any updates don't actually take place.
The following code, adapted from a Microsoft web-site doesn't work, while at the same time does not
trigger any error.
Try
Me.TestTableAdapter.Update(Me.AphDb1DataSet1.Test)
Me.AphDb1DataSet1.Test.AcceptChanges()
Me.TestTableAdapter.Update(Me.TestBindingSource.Contains(Me.AphDb1DataSet1))
Catch
MsgBox("Update NOT successful ! " & Err.Number)
End Try