FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour ActiveX IE
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
ActiveX IE
Posted: Sun Apr 05, 2009 02:49 PM

Hi, all !

oAct = TActiveX():New( oWnd, "Shell.Explorer.2" )

oDk:=oWnd:GetProp("Document")
OLEInvoke(oDk,"Write",buf) // buf - HTML-text variable

This design worked in earlier versions FWH, but in FWH9.3 I got window error ?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: ActiveX IE
Posted: Sun Apr 05, 2009 06:08 PM
Try it this way:

Code (fw): Select all Collapse
oAct = TActiveX():New( oWnd, "Shell.Explorer.2" )

oDk:=oWnd:GetProp("Document")
oDk:Write( buf ) // buf - HTML-text variable
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: ActiveX IE
Posted: Sun Apr 05, 2009 07:35 PM

Thanks, Antonio !
It's work fine

Continue the discussion