Salve a tutti,
io ho un db che per ogni macchina c'e' un indirizzo in formato testo.
vorrei che il sistema prenda dal db il campo indirizzo e faccia uscire una stringa con su Roma Via della stazione 45 e faccia una ricerca su Google maps.
con vb6 avevo fatto cosi:
come faccio ora con b4a?
io ho un db che per ogni macchina c'e' un indirizzo in formato testo.
vorrei che il sistema prenda dal db il campo indirizzo e faccia uscire una stringa con su Roma Via della stazione 45 e faccia una ricerca su Google maps.
con vb6 avevo fatto cosi:
B4X:
Const URL_BASE As String = _
"http://maps.google.com/maps?f=q&hl=en&geocode=&time=&date=&ttype=&q=@ADDR@&ie=UTF8&t=@TYPE@"
Dim addr As String
Dim url As String
' A very simple URL encoding.
addr = txtAddress.Text
addr = Replace$(addr, " ", "+")
addr = Replace$(addr, ",", "%2c")
' Insert the encoded address into the base URL.
url = Replace$(URL_BASE, "@ADDR@", addr)
' Insert the proper type.
Select Case cboGoogle.Text
Case "Map"
url = Replace$(url, "@TYPE@", "m")
Case "Satellite"
url = Replace$(url, "@TYPE@", "h")
Case "Terrain"
url = Replace$(url, "@TYPE@", "p")
End Select
' "Execute" the URL to make the default browser display
' it.
ShellExecute ByVal 0&, "open", url, _
vbNullString, vbNullString, SW_SHOWMAXIMIZED
Unload Me
come faccio ora con b4a?