Code:
Public Sub cboDate_AfterUpdate()
Dim strSQL As String
Dim intShootID As Integer
intShootID = Me.cboDate.Value
strSQL = "SELECT tblCompetition.[Shoot_ID], tblCompetition.[Shooter_ID], " & _
"tblCompetition.[Calibre_ID], tblCompetition.[Class_ID], tblCompetition.[Projectile_Weight], " & _
"tblCompetition.[Round_1_Score], tblCompetition.[Round_2_Score], tblCompetition.Round_3_Score, " & _
"tblCompetition.[Round_4_Score], tblCompetition.[Round_5_Score], tblCompetition.[Round_6_Score], " & _
"tblCompetition.[Competition_Total] " & _
"FROM tblCompetition " & _
"WHERE tblCompetition.Shoot_ID = " & intShootID & ";"
Me.RecordSource = strSQL
End Sub
With this code im getting the following error:

It hightlights the Me.RecordSource = strSQl line but I cant figure it out. Where is the mismatch? Both sides of the equation are strings?
Am I missing something?
One thing I did notice was in the local variable watcher the sql statement was incomplete as if the variable length wasnt long enough. Could this be an issue or is that more related to the size of the field in the Variable watcher?