Rafael,
you can put all a zip and go to www.hyperupload.com
U can
pubblish it .
Rafael Clemente wrote:Of course the trick is in the POS.DLL. Being a work in progress, I wouldn't like to make it public yet. But I'll be happy to send a copy to anybody interested. From the above code you can see how easy is to use it. It has taken Otto all of ten minutes to include it in his software
Rafael Clemente wrote:Wanderson,
During the past days, I have sent a copy of the demo program to all the friends that requested it. All of them got a further mail explaing the reason for not posting it for public download.
Also, I informed them that after the code was publicly disclosed on this forum without me even being consulted, I had decided to freeze further development on it. Maybe somebody else will pick up where I left it
Best regards,
Rafael
Gale FORd wrote:I've taken a different approach to Google Maps. You can create a link string that can do quite a bit of the work, so I created a class call WebMap that helps me create the link string.
You can download this class and TestWebMap prg at
http://www.hotshare.net/file/24300-4713157df9.html
It does not have the control that the previous postings have but it does everything I need it for, including routes.
//create map object
oWebMap := WebMap():new()
// add stop(s), if you only create one stop then it will bring up map
// if you add another 1 or more stops then it brings up directions.
oWebMap:AddStopSep( cStreet, cCity )
// or you can use oWebMap:Address( cAddress ) if you have
// address information like street and city in one string
//generate link string.
oWebMap:GenLink()
//Windows Explorer link string is now in
// oWebMap:cLink here is how you can use it
//in straight xHarbour code.
if .not. empty( oWebMap:cLink )
// Fivewin command
// ShellExecute( 0, "open", oWebMap:cLink,,, 5 )
// xHarbour command
oActiveX := TOleAuto():New("InternetExplorer.Application")
oActiveX:Visible := .T.
oActiveX:Toolbar := .T.
oActiveX:Statusbar :=.T.
oActiveX:MenuBar := .T.
oActiveX:Navigate( oWebMap:cLink )
endif
Gale FORd wrote:It's still at the hotshare location.
http://www.hotshare.net/file/24300-4713157df9.html
I also uploaded a version to xHarbour community site
http://www.xharbour.com/xhc/index.asp?p ... show_sub=1
Return to FiveWin for Harbour/xHarbour
Users browsing this forum: No registered users and 35 guests