Search found 38 matches: hactivex

Return to advanced search

RMCHART ocx con Harbour32 ??

... METHOD Activate() ::oChart := TOleAuto():New( ActXPdisp( ::oControl:hActiveX ) ) RETURN NIL Estare haciendo algo mal o esta forma de llamado ya es incompatible con este harbour. Alguien tiene alguna libreria mas actualizada ...
by carito
Mon May 06, 2019 1:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RMCHART ocx con Harbour32 ??
Replies: 3
Views: 657

ActiveX problem

I have FiveWin 15.01 and xHarbour 1.2.3 Intl. (SimpLex) (Build 20151110) and I cant run any example with ActiveX.
Program hand at this point:

Activex.prg (line 77): ::hActiveX = CreateActiveX( ::hWnd, cProgID, Self )

Thanks ...
by dpesic
Wed May 11, 2016 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX problem
Replies: 5
Views: 1026

Re: ayuda con tactivex

... = cProgID ::cString = ActXString( cProgID ) ::Register() ? 'paso1' if ! Empty( oWnd:hWnd ) ::Create() oWnd:AddControl( Self ) ? 'paso2' ::hActiveX = CreateActiveX( ::hWnd, cProgID, Self ) ? 'paso3' ::oOleAuto = TOleAuto():New( ActXPdisp( ::hActiveX ) ) Saludos!
by GuillermoMtz
Thu Aug 29, 2013 10:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con tactivex
Replies: 4
Views: 1058

Re: MSVS 2012

Antonio

This is how it is defined with xharbour

::oCalexStdDlgs:Calendar( TOleAuto():New( ActXPdisp( ::oCalex:hActiveX ) ) )

it was replaced for harbour with

::oCalexStdDlgs:Calendar = TOleAuto():New( ::oCalex:oOleAuto:__hObj )

all the above suggestions do not work

Richard
by Richard Chidiak
Mon May 20, 2013 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15098

Re: Video Player ActiveX no funciona en version 12.08 de FWH

... ) local cTypeLib := oReg:Get( "" ) oReg:Close() // if ! Empty( cTypeLib ) .and. File( cTypeLib ) // ::aEvents = ActXEvents( cTypeLib, ::hActiveX ) // endif return nil //----------------------------------------------------------------------------// Regards, George
by George
Sat Oct 06, 2012 8:40 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Video Player ActiveX no funciona en version 12.08 de FWH
Replies: 4
Views: 2620

Re: Codejock Calendar with Harbour ( vs xHarbour )

Tim,

It seems that you replace this line

::oCalexStdDlgs:Calendar( TOleAuto():New( ActXPDispPtr( ::oCalex:hActiveX ) ) )

with

::oCalexStdDlgs:Calendar = TOleAuto():New( ::oCalex:oOleAuto:__hObj )

then it is working fine :-)
by Antonio Linares
Sat Jun 30, 2012 2:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock Calendar with Harbour ( vs xHarbour )
Replies: 4
Views: 1785

Re: Variables

... ) oReg:Close() act:=TactiveX():new(::Janela, ::cString,0,0,0,0) if ! Empty( cTypeLib ) .and. File( cTypeLib ) aEvents = ActXEvents( cTypeLib, act:hActiveX ) endif for n = 1 to len(aEvents) #define aEvents[n][1] aEvents[n][2] // problem aqui :) no stay defined ... next n Return nil
by lailton.webmaster
Sat Sep 05, 2009 8:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Variables ( Solved )
Replies: 16
Views: 2161

Re: Erro 9000:

Antonio, > METHOD Destroy() INLINE ActXEnd( ::hActiveX ), ::oOleAuto := nil, Super:Destroy() this unfortunately doesn't work (looks like the program hangs before method Destroy() get fired). > oActiveX:oOleAuto := nil This DOES work, but ...
by Davide
Thu Sep 03, 2009 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erro 9000:
Replies: 15
Views: 2119

Re: Erro com 9.07

Olá Antonio, Prueba a cambiar: ... := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) por esto: ... := TOleAuto():New( oAct:oOleAuto:__hObj ) Sim, isto funcionou :D Veja no exemplo abaixo que tive comentar algumas linhas "*" para poder compilar e ao ...
by Rossine
Fri Aug 21, 2009 1:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9136

Re: Erro com 9.07

Rossine,

Prueba a cambiar:

... := TOleAuto():New( ActXPdisp( oAct:hActiveX ) )

por esto:

... := TOleAuto():New( oAct:oOleAuto:__hObj )
by Antonio Linares
Fri Aug 21, 2009 9:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9136

Re: Erro com 9.07

Olá Antonio, Es esta la línea 80 en donde se produce el GPF ? oStatusBar := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) Funcionaba este mismo código bien, anteriormente ? Sim antonio, funcionava com o harbour mais antigo. Tente rodar o exemplo de daniel que está neste link: ...
by Rossine
Fri Aug 21, 2009 1:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9136

Re: Erro com 9.07

Rossine,

Es esta la línea 80 en donde se produce el GPF ?

oStatusBar := TOleAuto():New( ActXPdisp( oAct:hActiveX ) )

Funcionaba este mismo código bien, anteriormente ?
by Antonio Linares
Fri Aug 21, 2009 12:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Erro com 9.07
Replies: 28
Views: 9136

Re: ActiveX formats

Jeff,

Try it this way:

oDate:AttachToCalendar( ActXPdisp( oAct:hActiveX ) )

or

oDate:AttachToCalendar( TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) )
by Antonio Linares
Sun Jun 07, 2009 6:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX formats
Replies: 4
Views: 842

ActiveX ( To Antonio ) Solved

... uParam1, uParam2, uParam3, uParam4, uParam5 ) have onlly 5 parans and i need 8. Im trying this form. Ret = ActXInvoke( ActXPdisp( oAct:hActiveX ), "RED", aParams[1], aParams[2], aParams[3], aParams[4], aParams[5], aParams[6], aParams[7], 0) more return nil yet. Thinnk that ...
by lailton.webmaster
Wed Jun 03, 2009 1:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX ( To Antonio ) Solved
Replies: 6
Views: 1042

Re: Codejock RibbonBar primeras pruebas

Colegas como comenta Ari:: oStatusBar := TOleAuto():New( ActXPdisp( oAct:hActiveX ) ) oStatusBar:StatusBar:Visible=.T. oStatusBar:StatusBar:AddPane( 0 ) oStatusBar:StatusBar:IdleText = "xxx" oStatusBar:StatusBar:AddPane( 59137 ) oStatusBar:StatusBar:AddPane( ...
by mantonio_08
Thu May 28, 2009 2:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codejock RibbonBar primeras pruebas
Replies: 92
Views: 27605
Next

Return to advanced search