Search found 54 matches: bonevent

Return to advanced search

Re: Control OCX para escaner

... 2.- Limpia las imágenes en memoria: oImgBox:Do("ClearPdf") 3.- Declara la función de manejo de eventos: oImgBox:bOnEvent := {|event, aParams, pParams| ::EventCapt(event, aParams, pParams, oImgBox)} La funcion on EventCapt es más o menos así: METHOD EventCapt( ...
by Rafael Clemente
Tue Mar 03, 2009 7:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Control OCX para escaner
Replies: 13
Views: 5230

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 ...
by ronaldo
Mon Feb 16, 2009 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Menu POP in TACTIVEX
Replies: 5
Views: 1100

Re: Cerrar ventana Web

... añadimos lo siguiente: oActiveX:Do( "Navigate2",(CurDrive() + ":\"+CurDir()+"\temp.htm") ) oActiveX:bOnEvent = { | event, aParams, pParams | EventInfo( event, aParams, pParams, oActiveX, oDlg ) } ....... ....... 3) La función EventInfo (ejemplo en ...
by Manuel Valdenebro
Tue Jan 20, 2009 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana Web
Replies: 8
Views: 1594

Re: Cerrar ventana Web

... de FWH desde Javascript o VBscript ? No lo hemos probado nunca, habria que investigar la forma de hacerlo. Yo me refería al uso de oActiveX:bOnEvent. Por favor revisa FWH\samples\webexp.prg y verás como lo usamos para reaccionar a los eventos que se generan en la página web.
by Antonio Linares
Mon Jan 19, 2009 7:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana Web
Replies: 8
Views: 1594

Re: ActiveX problem

Antonio; I realized that I wasn't doing anything with bOnEvent, so I changed the line to this: ::oActiveX:bOnEvent := { |e, a| logfile( "trace.log", {EventInfo( e, a ) } ) } The following information gets logged as soon ...
by reinaldocrespo
Sun Jan 11, 2009 8:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX problem
Replies: 17
Views: 6395

Re: ActiveX problem

Reinaldo,

Please use oActiveX:bOnEvent to check what events you receive.

Please review FWH\samples\webexp.prg for an oActiveX:bOnEvent example of use.
by Antonio Linares
Sun Jan 11, 2009 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX problem
Replies: 17
Views: 6395

xharbour.exe es el mismo que la 805

... en blanco. Mismo caso para WebExp3.prg Para compilar uso buildx webexp3 En la versión 805 los samples funcionan. Da la impresión que oActiveX:bOnEvent no se está ejecutando. Saludos
by fleal
Mon Jun 30, 2008 1:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xharbour.exe es el mismo que la 805
Replies: 4
Views: 929

Crystal reports 11 XI business objects

... "EnableCloseButton", 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" ), ...
by pablo.softgraf
Tue Apr 08, 2008 12:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crystal Reports y tActiveX
Replies: 15
Views: 5301

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: 5657

have you tried with two params ?

oActiveX:bOnEvent := { | event, nKey1, nKey2 | EventInfo( event, nKey1, nKey2 ) }
by Antonio Linares
Thu Aug 02, 2007 9:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: As to catch return of oActiveX:Do
Replies: 25
Views: 5657

oActiveX:bOnEvent

Hello,


I have been doing some test wit IE and activex
and have had problem using

oActiveX:bOnEvent

I get

Message not found: TACTIVEX:_BONEVENT


Any suggestions?

Thanks

[/code]
by Dave Zowasky
Thu Jul 19, 2007 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oActiveX:bOnEvent
Replies: 4
Views: 1112

Syda,

Please review samples\webexp.prg:

oActiveX:bOnEvent = { | event, aParams, pParams | ... your code ... }
by Antonio Linares
Wed Dec 20, 2006 5:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Controle Activex. Capturar eventos
Replies: 1
Views: 888

Hi fGamboa You can't use oActiveX:bOnEvent if used CreateOleObject(). This features return a handle and not a object. If use oActiveX = TActiveX():New( oWnd, "GrFingerX. GrFingerXCtrl.1 ") the result is better. I post this code below to ...
by Rochinha
Sun Oct 22, 2006 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fingerprint sample uploaded
Replies: 5
Views: 1943

... local nAt := AScan( ::aEvents, { | aEvent | aEvent[ 2 ] == nEvent } ) local cEvent := If( nAt != 0, ::aEvents[ nAt ][ 1 ], "" ) if ! Empty( ::bOnEvent ) Eval( ::bOnEvent, If( ! Empty( cEvent ), cEvent, nEvent ), aParams, pParams ) endif return nil Antonio, Can you give me information about ...
by areang
Sat Aug 19, 2006 12:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ActiveX VB with xHarbour
Replies: 27
Views: 7868

Gale, Can you get the webexp.prg sample in \fwh\samples to work using xBuilder? Antonio posted a link here recently for a new activex.lib we should link instead of the one that comes with xHarbour. I cannot get it to work which makes me think there is some incompatibilities using FWH ActiveX with x...
by Gale FORd
Thu May 11, 2006 3:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GetActiveObject + FWH = Windows Exception
Replies: 14
Views: 5800
PreviousNext

Return to advanced search