I'm trying to build a URL string using the following
mGoogleMap = "http://maps.google.com/maps?q=" & pLatMap & "," & pLongMap
The var pLatMap = 33.000000
but when used to make the URL string, it comes out as 3.000000 meaning the first char is missing but I don't know why.
Any help appreciated...
mGoogleMap = "http://maps.google.com/maps?q=" & pLatMap & "," & pLongMap
The var pLatMap = 33.000000
but when used to make the URL string, it comes out as 3.000000 meaning the first char is missing but I don't know why.
Any help appreciated...