Using the following to fill dataset:

vb.net Code:
  1. jobDA = New OleDb.OleDbDataAdapter("SELECT * FROM jobs WHERE jobs.jobno = " & JobNo, con)
  2. jobDA.Fill(jobDS)

Then adding databinding to textbox in form:
vb.net Code:
  1. Dim tbl As DataTable = jobDS.Tables(0)
  2. Me.txtOrderNo.DataBindings.Add("text", tbl, "OrderNo")

When i change the value of txtOrderNo jobDS.HasChanges stays false.
This is code which i have used before and worked fine. Any ideas?

TIA