Search found 5 matches

by shrkod
Sun Dec 16, 2007 1:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 30055

all credits go to rafael. I did nothing except remove the dll. ask rafael
by shrkod
Sat Dec 15, 2007 10:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 30055

rafael it is your code. you have the credits. I solved the need for a big dll
by shrkod
Sat Dec 15, 2007 9:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 30055

rafael, it is your html. I right click on the webpage and save the html source code. everybody can do it :-)
by shrkod
Fri Dec 14, 2007 9:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 30055

http://rapidshare.com/files/76601815/gmapd.zip.html #include "FiveWin.ch" function Main() local oDlg, oActiveX local cStreet := PadR( "BROADWAY 500", 80 ) local cCity := PadR( "NEW YORK CITY", 80 ) local cCountry := PadR( "USA", 80 ) DEFINE DIALOG oDlg RESOURC...
by shrkod
Fri Dec 14, 2007 8:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 30055

Same Google Maps functionality without need for DLL #include "FiveWin.ch" function Main() local oWnd, oActiveX DEFINE WINDOW oWnd TITLE "Google Maps" oActiveX = TActiveX():New( oWnd, "Shell.Explorer" ) oWnd:oClient = oActiveX oActiveX:Do( "Navigate2", CurDrive...