VBA Excel WEB Query

Hello everyone, in Excel 2003 and XP, this code works fine:
 
With ActiveSheet.QueryTables.Add(Connection:= _
"URL; http://www.geny.com/partants-pmu/2017-06-26-saint-cloud...", _
Destination:=Range("a1" ))
. BackgroundQuery = True
. Refresh BackgroundQuery:=False
End With
 
But with Excel 2003 and Windows 10 error at the following line:
 
Refresh BackgroundQuery:=False


Despite a lot of research, I haven't found a solution.