I am migrating a 2003 database to a 2007 database. I need some assistance....I have vba poping up when i select a function and pops up refrencing the same syntax.
Private Sub cmd_Post_Click()
Dim D As Database, I As Integer, R As Recordset, Y, RowSeperator
Dim SQLText As String
Dim CCounty As String
SQLText = "SELECT qry_TaxRate.CityName, qry_TaxRate.CountyName"
SQLText = SQLText & " FROM qry_TaxRate"
SQLText = SQLText & " WHERE ((([qry_TaxRate].CityName)='" & Me!ShipCity & "'));"
This is an example. the above in highlighted is the problem child....
Not sure if there was vba language changes that arent recognized by 2007 from 2003