Options

open google maps

blogdynamicsblogdynamics Member Posts: 3
edited 2010-10-31 in NAV Tips & Tricks
It's simple but I hope that it will help

From the Customer card put this code to open google maps with the client's address:
HYPERLINK('http://www.google.es/maps?f=q&hl=es&q=' +Address+' '+"Address 2"+' '+City+' '+County);


And another to open google maps with the route from the direction of our company to the customer's address
recCompanySetup.RESET;
recCompanySetup.GET;

HYPERLINK('http://maps.google.es/maps?f=d&hl=es&saddr='+recCompanySetup.Address+' '+recCompanySetup."Address 2"+' '+
recCompanySetup.City+' '+recCompanySetup.County+'&daddr='+Address+' '+"Address 2"+' '+City+' '+County);
Be Dynamics
Sign In or Register to comment.