Your problem is on this line:
dataGridView1(startBook_C, id - 1).Style.BackColor = Color.Blue
As you can see, this looks like a method call. Are you trying to do something like this?
dataGridView1.Rows[startBook_C].Cells[id-1].Style.BackColor = Color.Blue;