Search found 54 matches: bonevent

Return to advanced search

Re: How to receive events from objects?

Jose Yes the bonevent block traps all the events Now for Harbour , Antonio has extended the activex class, i am using thactivex (this is a sample below) ::oCalex := thActiveX():New( ::oPanelCalex, "Codejock.CalendarControl.15.0.2" ...
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: 8963

Re: How to receive events from objects?

Hi Richard,

Thank you for the response.

I still have few questions which I hope you have idea.

How's the activex calls back to your application? Is it through the :bOnEvent?


Thank you very much.

Jose
by Jose Dolar
Fri Jun 13, 2014 6:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to receive events from objects?
Replies: 32
Views: 8963

Re: ayuda con tactivex

... ) oWnd:oClient = oActiveX // 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 ...
by GuillermoMtz
Thu Aug 29, 2013 6:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con tactivex
Replies: 4
Views: 1066

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 ...
by Massimo Linossi
Sat May 25, 2013 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock Calendar Samples?
Replies: 116
Views: 46511

Re: MSVS 2012

... only one regret , the param table 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] ...
by Richard Chidiak
Wed May 22, 2013 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15099

Re: MSVS 2012

... is showing.... :? is there something 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() ...
by Richard Chidiak
Mon May 20, 2013 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSVS 2012
Replies: 77
Views: 15099

Error in webexp compiled with Borland 582

... surface // oActiveX:GoHome() 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 ...
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

... surface // oActiveX:GoHome() 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 ...
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:VideoBorder3D:=.t. 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: ...
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:VideoBorder3D:=.t. 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: ...
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: cActiveX ( To antonio )

Exemplo/Example:

Class TActiveX / Class cActiveX

obj1:=Tactivex():new(ownd,"progid")
obj1:bOnEvent(|| msginfo ("Evento / event "))
8)
by lailton.webmaster
Tue Jul 21, 2009 12:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4215

ToleAuto Eventos ?

Como yo retorno a events del object que usa ToleAuto,
en TActiveX es bOnEvent y Toleauto ?

Alguem sabe ?

y donde yo encontro documentation sobre la class ?
by lailton.webmaster
Sun May 31, 2009 9:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ToleAuto Eventos ?
Replies: 1
Views: 354

Re: Memoria no liberada en ActiveX - arreglado!

... CLASS TActiveX FROM TControl CLASSDATA lRegistered AS LOGICAL DATA hActiveX DATA cProgID DATA cString DATA aProperties, aMethods, aEvents DATA bOnEvent METHOD New( oWnd, cProgID, nRow, nCol, nWidth, nHeight ) CONSTRUCTOR METHOD ReDefine( nId, oWnd, cProgID ) CONSTRUCTOR METHOD Do( cMethodName, ...
by MGA
Wed Apr 08, 2009 1:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Memoria no liberada en ActiveX - arreglado!
Replies: 18
Views: 6390

Re: Codejock RibbonBar first tests

Fafi, you can assign a code block to <oact:bOnEvent>. When an event in the RibbonBar occurs, this code block will be executed. If a button was clicked by the user, the variable <cEvent> has 'normally' the value "Execute". All ...
by frose
Sat Apr 04, 2009 9:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Codejock RibbonBar first tests
Replies: 116
Views: 35192

Re: uTILIZAR OCX

... Los metodos se llaman asi: uResultado = oActiveX:Do( "NombreMetodo", uParametros, ... ) Los eventos se controlan asi: oActiveX:bOnEvent = { | cEventNombre, aParametrosRecibidos, pParams | ... } En FWH\samples\webexp.prg tienes un ejemplo del uso de cada una de ellos.
by Antonio Linares
Thu Mar 19, 2009 8:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: uTILIZAR OCX
Replies: 5
Views: 908
PreviousNext

Return to advanced search