Search found 54 matches: bonevent

Return to advanced search

Notify Event for own Control

hi, for my CLASS TGrid i like to receive Notify Event when fired for LVN_GETDISPINFO --- when use CLASS ActiveX i can use Codeblock Slot bOnEvent   ::oControl:bOnEvent := { | cEvent, aParams | ::VLC_Event( cEvent, aParams ) } it is called in METHOD OnEvent() CLASS TActiveX ...
by Jimmy
Mon Oct 17, 2022 5:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Notify Event for own Control
Replies: 4
Views: 374

Re: FiveWin ActiveX Event

hi Antonio, thx for Answer. i have try every *.PRG where i found bOnEvent and i "think" i got it --- my "Problem" is that VLC does not "react" on "Click" or "KeyPress" when it is "active" (play ...
by Jimmy
Sun Jul 17, 2022 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 609

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( ...
by Antonio Linares
Sun Jul 17, 2022 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 609

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( ...
by Jimmy
Sat Jul 16, 2022 11:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWin ActiveX Event
Replies: 6
Views: 609

Re: API Bancaria (SOLUCIONADO)

... he probado. Por lo que veo acivas un timer que cada 3 seg. exploras si te llega la cadena ?code ... Te recomiendo que experimentes con el evento (bOnEvent) que te dará el activeX a cualquier cambio en la pagina, y no tienes que hacer cada 3 segundos, peticiones al ActiveX Yo ya casi no me acuerdo, ...
by Carles
Thu Apr 22, 2021 7:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: API Bancaria (SOLUCIONADO)
Replies: 17
Views: 2233

evaluate some harbor in c.

I have a class called tvlc, which has a data called bOnEvent of type codeblock that codeblock I need to pass it to c and evaluate its content. I am very confused with this since it exceeds my little knowledge in c. this is what I have the api de vlc, ...
by carlos vargas
Thu Dec 06, 2018 7:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: evaluate some harbor in c.
Replies: 1
Views: 625

evaluar algo de harbour en c.

tengo una clase llamada tvlc, la cual tiene una data llamada bOnEvent de tipo codeblock ese codeblock necesito pasarlo a c y que se evalue su contenido. estoy muy confundido con esto ya que supera mis pocos conocimientos en c. esto es lo que tengo el api ...
by carlos vargas
Thu Dec 06, 2018 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: evaluar algo de harbour en c.
Replies: 7
Views: 1252

Re: ClassGriaule.zip

... "GrFingerX.GrFingerXCtrl") 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 ...
by marca
Mon Sep 26, 2016 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ClassGriaule.zip
Replies: 14
Views: 2732

Problemas biometria Sdk 2009 Griaule

... oFinger:Do("Initialize") 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 ...
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

... node, because now, it will directly select if the mouse is over the node. I will try to replace the MsgInfo( aParams[ 1 ] ) in the oActiveX:bOnEvent with to another function that also check if the mouse is clicked, and then close the window with oWnd:end()
by Marc Vanzegbroeck
Tue Nov 10, 2015 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Showing SVG-files with links
Replies: 17
Views: 1918

Re: Showing SVG-files with links

Marc,

Please replace it with:

oActiveX:bOnEvent
by Antonio Linares
Mon Nov 09, 2015 8:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Showing SVG-files with links
Replies: 17
Views: 1918

Re: Trapping events on a ToleAuto object

... how to trap and recover from an error. My question is how to trap the ocx's event. When the object is created using Tactivex():new() you can use bonEvent property to trap and act as you wish anytime an event is triggered by the component. I can't find how to do so when the object is created using ...
by reinaldocrespo
Sat Feb 07, 2015 11:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trapping events on a ToleAuto object
Replies: 6
Views: 2205

Trapping events on a ToleAuto object

Hi.

I usually trap Ole events using :bOnEvent property of TActiveX() object. How can I trap events when the object is created using CreateObject()?

Thank you,


Reinaldo.
by reinaldocrespo
Sat Feb 07, 2015 7:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trapping events on a ToleAuto object
Replies: 6
Views: 2205

Re: Events from OLE

... it to a Form. So, I tried 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)? ...
by Jose Dolar
Sat Aug 23, 2014 3:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Events from OLE
Replies: 19
Views: 3252

Re: How to receive events from objects?

Hi Antonio, Thank you for responding on this thread. Last thing, is THActiveX object compatible with Createobject object except for the addition of bOnEvent code block? I just want to have rough estimates to the impact to existing prg codes before requesting for new FWH lib. We just released our ...
by Jose Dolar
Sat Jun 14, 2014 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8940
Next

Return to advanced search