Hi all
I hope questions relating to TTN can still be posted.
To navigate to an address, the syntax is:
Dim strCity, strStreet, strHseNr, strpostcode As String
strCity="London"
strStreet="Bristow Road"
strHseNr="5"
strpostcode="SE191JX"
The following syntax failed:
NavigateToAddress(strCity, strStreet, strHseNr, strpostcode).
whereas the following succeeded:
NavigateToAddress("London","Bristow Road","5","SE191JX").
So putting the arguments as string variables failed while putting the arguments as absolute values worked.
My requirement is to pass the arguments as string variables. Can anyone pls help me how to use variables in this function.
Thank you.
Ayo