i have this code to fill my datagrid with data from access database table

vb Code:
  1. Dim CON As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source =" & Application.StartupPath & "\database.mdb")
  2. Dim sql As String = "select bot.trigger,bot.verse1 from bot"
  3. Dim data As New OleDbDataAdapter(sql, CON)
  4.         Dim ds As New DataSet
  5.         ds.Clear()
  6.         data.Fill(ds, "bot")
  7.         DataGridView1.DataSource = ds
  8.         DataGridView1.DataMember = "bot"

now i want to add new row to the datagrid with value from textbox
i get error that datagridview is bound
how can i do this?