Hi Mick,
Thanks for the answers.
The intention was to get the long url from
the short url and to store some content of the url.jason in an Access table
automatically.
The url.json is (a nearly) normal text file containing the coordinates and
some other information.
I then want to write the coordinates into a picture
(GPSLatitude/GPSLongitude), selected in my database.
(EXIF/IPTC-Tags)
In the meantime I found an easier way to get that information.
ReadyState_Complete = 4
Set objApp = CreateObject("InternetExplorer.Application")
With objApp
.Navigate URL:="
http://goo.gl/maps/GcybT"
.Visible = True
Do
DoEvents
Loop While .Busy Or .ReadyState <> ReadyState_Complete
strLongUrl = .LocationURL
.Quit
End With
So in this special case, the problem is solved now.
Juergen