Search found 22 matches: eventinfo

Return to advanced search

Re: API Bancaria (SOLUCIONADO)

... 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: 2297

Re: ClassGriaule.zip

... , cId ) } oEnrollCtx:StartEnroll() 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 ...
by marca
Mon Sep 26, 2016 7:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ClassGriaule.zip
Replies: 14
Views: 2734

Re: ClassGriaule.zip

... = 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) oFingerX:Do("CapStopCapture",sensor) ...
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

... = 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 controle ...
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: Showing SVG-files with links

Antonio,

Did you received my example?

Is there a way that the window close after clicking a node?

I was thinking to do a test in the EventInfo-function, that someone clicked a node, and then close the window, and return the URL, but I don't know what event-name I have to use.
by Marc Vanzegbroeck
Tue Nov 10, 2015 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Showing SVG-files with links
Replies: 17
Views: 2011

Re: ayuda con tactivex

... 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 EventInfo( event, aParams, ...
by GuillermoMtz
Thu Aug 29, 2013 6:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con tactivex
Replies: 4
Views: 1056

Error in webexp compiled with Borland 582

... "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 the trick? regards
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

... "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 el truco ? Saludos
by devtuxtla
Sat Oct 22, 2011 2:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo webexp compilado con Bcc 582
Replies: 2
Views: 837

MediaPlayer.MediaPlayer.1

... oActiveX2:oClient := oDlgeNT oActiveX2:SetProp( "FileName",aCarga[ nItem3 ] ) oActiveX2:bOnEvent = { | event, aParams | EventInfo( oDlgeNT,event, aParams ) } RETURN function EventInfo( oDlgeNT,event, aParams ) local cMsg := "Event: " + cValToChar( event ) + ...
by ochacon
Sat Jan 22, 2011 6:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MediaPlayer.MediaPlayer.1
Replies: 0
Views: 394

Se podra ver una secuencia de videos con "MediaPlayer.MediaP

... oActiveX2:oClient := oDlgeNT oActiveX2:SetProp( "FileName",aCarga[ nItem3 ] ) oActiveX2:bOnEvent = { | event, aParams | EventInfo( oDlgeNT,event, aParams ) } RETURN function EventInfo( oDlgeNT,event, aParams ) local cMsg := "Event: " + cValToChar( event ) + ...
by ochacon
Mon Dec 27, 2010 1:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se podra ver una secuencia de videos con "MediaPlayer.MediaP
Replies: 1
Views: 581

Re: Menu POP in TACTIVEX

Preciso saber da LINHA e COLUNA, para criar meu proprio MENU POP... look: oActiveX:bOnEvent = { | event, aParams, pParams | cEvents += EventInfo( event, aParams, pParams, oActiveX ) } i need: oActiveX:bOnEvent = { | event, aParams, pParams, nRow, nCol | cEvents += EventInfo( event, ...
by ronaldo
Mon Feb 16, 2009 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Menu POP in TACTIVEX
Replies: 5
Views: 1099

Re: Cerrar ventana Web

... "Navigate2",(CurDrive() + ":\"+CurDir()+"\temp.htm") ) oActiveX:bOnEvent = { | event, aParams, pParams | EventInfo( event, aParams, pParams, oActiveX, oDlg ) } ....... ....... 3) La función EventInfo (ejemplo en samples\webexp.prg), la dejamos con el siguiente ...
by Manuel Valdenebro
Tue Jan 20, 2009 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana Web
Replies: 8
Views: 1585

Re: Cerrar ventana Web

Antonio, ¡ Triunfo total ! En la página web, a través de JavaScript, modifico el título de la página y este evento es captado por la función EventInfo que ejecuta el oDlg:End(). De esta manera, se cierra la ventana y además, se evita el molesto aviso de Windows "Una aplicación está intentando ...
by Manuel Valdenebro
Tue Jan 20, 2009 9:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana Web
Replies: 8
Views: 1585

Crystal reports 11 XI business objects

... 1 ) oActiveX:SetProp( "EnableExportButton", 1 ) oActiveX:SetProp( "EnablePopupMenu", 0 ) oActiveX:bOnEvent = { | event, aParams | EventInfo( event, aParams, oCrp, oActivex ) } ACTIVATE WINDOW oVentHija; ON INIT ( oActiveX:Do( "Viewreport" ), oActivex:Do( "Zoom", '90' ...
by pablo.softgraf
Tue Apr 08, 2008 12:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crystal Reports y tActiveX
Replies: 15
Views: 5281

Antonio,

Yes, i tried with four params.

oActiveX:bOnEvent := { | event, nKey1, nKey2, nKey3, nKey4 | EventInfo( event, nKey1, nKey2, nKey3, nKey4 ) }

The return is:

nKey1 = array empty
nKey2 = 1242696 ever(constant)
nKey3 = NIL
nKey4 = NIL
by vilian
Fri Aug 03, 2007 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: As to catch return of oActiveX:Do
Replies: 25
Views: 5599
Next

Return to advanced search