Search found 5 matches

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

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: 31321

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: 31321

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: 31321

m

#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 RESOURCE "map"

REDEFINE ACTIVEX oActiveX ID 100 OF oDlg PROGID "Shell.Explorer ...
by shrkod
Fri Dec 14, 2007 8:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Google Maps
Replies: 85
Views: 31321

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() + ":\" + CurDir ...