Search found 603 matches: tactivex

Return to advanced search

Re: xHarbour.org updated!

... // + Login + Senha(cChave) DEFINE WINDOW oChildWnd FROM 0,0 TO 600,800 PIXEL TITLE "PORTO SEGUROS" oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" ) oActivex:Silent := .T. oChildWnd:oClient = oActiveX oActiveX:Do( "Navigate2", ...
by karinha
Wed Sep 20, 2023 1:11 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37310

Re: Shell.Explorer.2 problem

... so it would be wherever you can implement a way to block that from happening." Does anybody know of a way to do this using oActiveX = TActiveX():New( oWndHP, "Shell.Explorer.2" ) ? Thanks, Randal
by Randal
Thu Jun 29, 2023 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Re: Shell.Explorer.2 problem

... ", 2.0 ) // DEFINE WINDOW oChildWnd FROM 0, 0 TO 600, 800 PIXEL TITLE cTitle DEFINE WINDOW oChildWnd FROM -1, -1 TO -1, -1 PIXEL oActiveX = TActiveX():New( oChildWnd, "Shell.Explorer.2" ) oActivex:Silent := .T. oChildWnd:oClient = oActiveX // oActiveX:Do( "Navigate2", ...
by karinha
Mon Jun 26, 2023 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Shell.Explorer.2 problem

... "MYICON" DEFINE WINDOW oWndHP ; FROM 1, 5 TO 40, 75 ; TITLE "Hosted Payments" ; STYLE nOr(WS_CAPTION, WS_SYSMENU) oActiveX = TActiveX():New( oWndHP, "Shell.Explorer.2" ) oWndHP:oClient = oActiveX // To fill the entire window surface oActiveX:Do( "Navigate", ...
by Randal
Mon Jun 26, 2023 10:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Shell.Explorer.2 problem
Replies: 12
Views: 716

Re: Questions about WebView

oDlg:oClient:=TActiveX():New(oDlg, "Shell.Explorer.2", 0, 0, oDlg:nWidth, oDlg:nHeight) oDlg:oClient:Do("Navigate2", "https://www.website/") do while .T. oDk:=oDlg:oClient:GetProp("Document") ...
by Natter
Fri Nov 25, 2022 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Questions about WebView
Replies: 26
Views: 1609

Notify Event for own Control

... bOnEvent   ::oControl:bOnEvent := { | cEvent, aParams | ::VLC_Event( cEvent, aParams ) } it is called in METHOD OnEvent() CLASS TActiveX --- how can i use this Concept in my own Class TGrid under FiveWin :?:
by Jimmy
Mon Oct 17, 2022 5:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Notify Event for own Control
Replies: 4
Views: 375

Re: Duda de cuando usar TActiveX, TOleAuto y CreateObject

Dear Lailton,

We use a FWH new control class:

@ 0, 0 ACTIVEX oActiveX PROGID "Shell.Explorer" OF oWnd

MsgInfo( GetClassName( oActiveX:hWnd ) ) // TACTIVEX
by Antonio Linares
Fri Sep 30, 2022 7:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de cuando usar TActiveX, TOleAuto y CreateObject
Replies: 4
Views: 565

Re: Duda de cuando usar TActiveX, TOleAuto y CreateObject

Esta 100% correcto Antonio.

Una pergunta sobre el tema, se fivewin no usa "AtlAxWin" o que usa para criar la interface con activex?

( lo pergunto por que la AtlAxWin funciona bien pero tiene limitacion y falha en algunas versiones de windows. )
by Lailton
Fri Sep 30, 2022 1:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de cuando usar TActiveX, TOleAuto y CreateObject
Replies: 4
Views: 565

Re: Duda de cuando usar TActiveX, TOleAuto y CreateObject

Estupendo Antonio, claro como el agua. :lol: :lol:
by AngelSalom
Tue Sep 27, 2022 7:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de cuando usar TActiveX, TOleAuto y CreateObject
Replies: 4
Views: 565

Re: Duda de cuando usar TActiveX, TOleAuto y CreateObject

... xOle, cLicense )   RETURN TOleAuto():New( xOle,, cLicense ) luego esas dos funciones son equivalentes. La diferencia con TActiveX es cuando creas un objeto OLE tipo control (con interface de usuario), en esos casos necesitas TActiveX Que me corrijan si me equivoco, Harbour ...
by Antonio Linares
Tue Sep 27, 2022 5:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de cuando usar TActiveX, TOleAuto y CreateObject
Replies: 4
Views: 565

Duda de cuando usar TActiveX, TOleAuto y CreateObject

... de controles que los distribuye como "ActiveX COM products". Hasta ahora casi todas las pruebas las estoy haciendo con la clase TActiveX con bastante éxito aunque hay algunos que se resisten y ahí es cuando he empezado a hacer algunas pruebas. Algunos los puedo usar con un CreateObject ...
by AngelSalom
Tue Sep 27, 2022 3:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda de cuando usar TActiveX, TOleAuto y CreateObject
Replies: 4
Views: 565

Re: FiveWin ActiveX Event

hi Antonio, while i want to use multi Instance of VLC i have now use CLASS Code CLASS FWTVlc    // FROM TActiveXMETHOD New( oWnd, nRow, nCol, nWidth, nHeight , nIndex) CLASS FWTVlc      ::oControl := TActiveX() :New( oWnd, "VideoLAN.VLCPlugin.2", ...
by Jimmy
Mon Jul 18, 2022 11:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 624

Re: FiveWin ActiveX Event

hi, i try to understand how i can Event from ActiveX work under FiveWin. i found bOnEvent but no Sample with aEvents which are Property of TActiveX() ---   oAct:bOnEvent = { | cEvent, aParams | RibbonBarEvent( cEvent, aParams ) }function RibbonBarEvent( cEvent, aParams ...
by Antonio Linares
Sun Jul 17, 2022 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 624

FiveWin ActiveX Event

hi, i try to understand how i can Event from ActiveX work under FiveWin. i found bOnEvent but no Sample with aEvents which are Property of TActiveX() ---   oAct:bOnEvent = { | cEvent, aParams | RibbonBarEvent( cEvent, aParams ) }function RibbonBarEvent( cEvent, aParams ...
by Jimmy
Sat Jul 16, 2022 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 624

Re: How to call Events from OLE/COM objects

Hi Jimmy, The control is not ActiveX. I start using Win_OleCreateObject because it didn't work with tActivex(). I did tests using __axRegisterHandler and I didn't get exodus either. A simple test in C# shown in this link I can't call the ConvertToPicture() event. Maybe it's ...
by Giovany Vecchi
Fri Apr 22, 2022 2:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to call Events from OLE/COM objects
Replies: 14
Views: 963
Next

Return to advanced search