i got that code to save dataset to from table to another table

vb Code:
  1. Private Sub Option1ToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Option1ToolStripMenuItem.Click
  2.         Try
  3.             Dim SavInto As New OleDb.OleDbCommand
  4.             SavInto.Connection = CON
  5.             SavInto.CommandType = CommandType.Text
  6.             SavInto.CommandText = "INSERT INTO versecollection (BookNum,ChapterNum,VerseNum)" & _
  7.             "SELECT Bible.BookNum, Bible.ChapterNum, Bible.VerseNum FROM BibleBookNames INNER JOIN Bible ON BibleBookNames.BookNum = Bible.BookNum WHERE (((BibleBookNames.Book)=""" & DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(0).Value.ToString & """) AND ((Bible.ChapterNum)= " & ComboBox2.Text & ") AND ((Bible.VerseNum)=" & DataGridView1.Rows(DataGridView1.CurrentRow.Index).Cells(1).Value.ToString & "))"
  8.             CON.Open()
  9.             SavInto.ExecuteNonQuery()
  10.             CON.Close()
  11.         Catch ex As Exception
  12.             MsgBox(ex.Message)
  13.         End Try

i need to know some thing if i want this option to work with any datagridview because i have more than one datagridview in my application how to make that code or optin or the SQL statment work on all the datagridview not only DataGridView1