Search found 27 matches: pparams

Return to advanced search

Re: API Bancaria (SOLUCIONADO)

... 3 segundos, peticiones al ActiveX Yo ya casi no me acuerdo, pero recuerdo que podias hacer algo asi oActiveX:bOnEvent = { | event, aParams, pParams | EventInfo( event, aParams, pParams ) } Y luego dentro de la funcion las acciones que quieras ejecutar en funcion del evento function EventInfo( ...
by Carles
Thu Apr 22, 2021 7:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: API Bancaria (SOLUCIONADO)
Replies: 17
Views: 2295

Re: ClassGriaule.zip

... oGriaulle:CaptureInit() whereas using activex this is where the reader will flash asking digital FUNCTION EventInfo( event, aParams, pParams, oFingerX ) oFingerX:Do("CapStartCapture","Ftrn0001") How do to trigger the reader more at source test.prg from class ClassGriaule.zip
by marca
Mon Sep 26, 2016 7:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ClassGriaule.zip
Replies: 14
Views: 2734

Re: ClassGriaule.zip

... oWnd:oClient = oFingerX oFingerX:Do("Initialize") oFingerX:Do("CapInitialize") oFingerX:bOnEvent = { | event, aParams, pParams | EventInfo( event, aParams, pParams, oFingerX) } ACTIVATE WINDOW oWnd VALID SalirHuella(oFingerX) RETURN NIL FUNCTION SalirHuella(oFingerX) ...
by marca
Mon Sep 26, 2016 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ClassGriaule.zip
Replies: 14
Views: 2734

Problemas biometria Sdk 2009 Griaule

... If nErr = 0 oFinger:Do("CapInitialize") oFinger:Do("CreateContext", cMyContextID ) oFinger:bOnEvent = { | event, aParams, pParams | EventInfo( event, aParams , oFinger ,oFoto ,oImagemDedo ,oDlgActiveX ,cMyContextID , cQualDedo ) } ELSE MSGSTOP("Não foi encontrado o ...
by marca
Tue Sep 20, 2016 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problemas biometria Sdk 2009 Griaule
Replies: 0
Views: 642

Re: Events from OLE

Jose,

I missed your msg. Glad to know that you are already receiving events.

pParams is the same as aParams. I just used that syntax to keep compatibility with previous FWh Class TActiveX
by Antonio Linares
Mon Aug 25, 2014 4:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Events from OLE
Replies: 19
Views: 3256

Re: Events from OLE

... the FWH THactiveX and so far my App received events. :D Just want to clarify about the parameters of the code block. bOnevent:={|event,aParams,pParams| } 1. Is the code block always receive 3 paramters regardless of the Ole? 2. What is the third parameter (pParams)? Thank you. Regards, Saludos, ...
by Jose Dolar
Sat Aug 23, 2014 3:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Events from OLE
Replies: 19
Views: 3256

Re: How to receive events from objects?

... ::oCalex := thActiveX():New( ::oPanelCalex, "Codejock.CalendarControl.15.0.2" ) with object ::oCalex :bOnEvent = { | event, aParms, pParams | ::handleEvent( Event, aParms, pParams ) } etc... Hth richard
by Richard Chidiak
Fri Jun 13, 2014 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8943

Re: Codejock and Harbour + FWH

Hi George, Please Change like this function RibbonBarEvent( cEvent, aParams, pParams, aButtons, oWnd ) do case case cEvent == "Execute" .and. Len( aButtons ) > 0 do case case aButtons[ 1 ]:hObj == aParams[ 1 ] :hObj MsgInfo( "Button 1" ) ...
by RAMESHBABU
Mon Jan 27, 2014 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock and Harbour + FWH
Replies: 7
Views: 2856

Re: ayuda con tactivex

... // To fill the entire window surface oActiveX:Navigate( "http://www.google.com" ) oActiveX:bOnEvent = { | event, aParams, pParams | cEvents += EventInfo( event, aParams, pParams, oActiveX ) } ACTIVATE WINDOW oWnd ; VALID ( MemoEdit( cEvents ), .t. ) return nil function ...
by GuillermoMtz
Thu Aug 29, 2013 6:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con tactivex
Replies: 4
Views: 1056

Re: Codejock Calendar Samples?

Hello again Antonio. I give up the tests. :VisualTheme = ( xtpCalendarThemeOffice2007 ) Error in runtime :bOnEvent = { | event, aParms, pParams | ::handleEvent( Event, aParms, pParams ) } :SetDataProvider( "Provider=custom" ) Error in runtime I don't know if is a problem with Xharbour ...
by Massimo Linossi
Sat May 25, 2013 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock Calendar Samples?
Replies: 116
Views: 46463

Re: MSVS 2012

... is not sent like in xharbour , we would have a 100% compatibility I explain to fire the events we have ::ocalex:bOnEvent = { | event, aParms, pParams | ::handleEvent( Event, aParms, pParams ) } aparms holds all the pointers to the event in xharbour aparms[01] = DATE aparms[02] = object in ...
by Richard Chidiak
Wed May 22, 2013 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15092

Re: MSVS 2012

... to change with the dataprovider syntax ? with object ::oCalex :VisualTheme = ( xtpCalendarThemeOffice2007 ) :bOnEvent = { | event, aParms, pParams | ::handleEvent( Event, aParms, pParams ) } :SetDataProvider( "Provider=custom" ) if ! :DataProvider:open() :DataProvider:Create() ...
by Richard Chidiak
Mon May 20, 2013 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15092

Error in webexp compiled with Borland 582

... oActiveX:Navigate( "http://www.google.com" ) // oActiveX:StatusBar = .t. oActiveX:bOnEvent = { | event, aParams, pParams | cEvents += EventInfo( event, aParams, pParams, oActiveX ) } ACTIVATE WINDOW oWnd ; VALID ( MemoEdit( cEvents ), .t. ) return nil Anyone know ...
by devtuxtla
Sat Oct 22, 2011 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in webexp compiled with Borland 582
Replies: 2
Views: 669

Ejemplo webexp compilado con Bcc 582

... oActiveX:Navigate( "http://www.google.com" ) // oActiveX:StatusBar = .t. oActiveX:bOnEvent = { | event, aParams, pParams | cEvents += EventInfo( event, aParams, pParams, oActiveX ) } ACTIVATE WINDOW oWnd ; VALID ( MemoEdit( cEvents ), .t. ) return nil Alguien conoce ...
by devtuxtla
Sat Oct 22, 2011 2:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo webexp compilado con Bcc 582
Replies: 2
Views: 836

Re: New FTDN July/Julio 2009 (9.07)

... sus aplicaciones. Por favor revisa samples\TestTitl.prg * Mejora: En el método OnEvent() de la clase TActiveX, ahora recibe un parámetro extra pParams con el original pParams ( DISPPARAMS * pParams ), así que puedes manejar directamente la matriz de parámetros originales VARIANT que se suministra ...
by Antonio Linares
Wed Aug 05, 2009 3:27 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2009 (9.07)
Replies: 1
Views: 2745
Next

Return to advanced search