m using access 2007 and vb 2005
this is my code
Dim drNewRow As DataRow = m_DataTable.NewRow()
drNewRow("Code") = txtColourCode.Text.Trim
drNewRow("Colour Name") = txtBaseColour.Text.Trim
drNewRow("Price") = txtPrice.Text.Trim
m_DataTable.Rows.Add(drNewRow)
m_DataAdapter.Update(m_DataTable)