Public Const DIST = "http://www.distance2villes.com/recherche?source="
Sub Dstce()
Url = DIST & "Paris" & "&destination=" & "Lille"
With CreateObject("WINHTTP.WinHTTPRequest.5.1")
.Open "GET", Url, False
.send
Txt = .responseText
End With
Range("E2").Value = Split(Split(Txt, "id=""distanciaRuta"">")(1), "</strong>")(0)
Range("F2").Value = Split(Split(Txt, "id=""kmslinearecta"">")(1), "</strong>")(0) '--> ne récupère rien !? Grrrr
Range("G2").Value = Split(Split(Txt, "id=""tiempo"">")(1), "</span>")(0)
End Sub