Página 1 de 1

About OCX Class

Publicado: Sab May 02, 2009 7:23 pm
por Xailer
Dear Jose, Ignacio
Starting some tests with CodeJock Xtreme Suite for ActiveX, discover that
from the constructed classes ( from Import ActiveX) missing some important
events, like DblClick, MouseDown,MouseMove,MouseUp and some important
Methods like. So what really and trully hapens with this big issue. Can we
expect a 100% ActiveX support from Xailer2. What methods, events, properties
contains the "mysterious" ocx class.
Many Many Thanks
Dionisis

About OCX Class

Publicado: Sab May 02, 2009 7:32 pm
por jfgimenez
Dionisis,
> Starting some tests with CodeJock Xtreme Suite for ActiveX, discover that
> from the constructed classes ( from Import ActiveX) missing some
> important events, like DblClick, MouseDown,MouseMove,MouseUp and some
> important Methods like. So what really and trully hapens with this big
> issue. Can we expect a 100% ActiveX support from Xailer2. What methods,
> events, properties contains the "mysterious" ocx class.
Those are 'standard' OCX events, which are fired throw the 'standard' Xailer
events (OnDblClick, OnLButtonDown, OnMouseMove and OnLButtonUp). There are
also other 3 similar events: OnClick, OnKeyDown and OnKeyUp.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Sab May 02, 2009 7:32 pm
por jfgimenez
Dionisis,
> Starting some tests with CodeJock Xtreme Suite for ActiveX, discover that
> from the constructed classes ( from Import ActiveX) missing some
> important events, like DblClick, MouseDown,MouseMove,MouseUp and some
> important Methods like. So what really and trully hapens with this big
> issue. Can we expect a 100% ActiveX support from Xailer2. What methods,
> events, properties contains the "mysterious" ocx class.
Those are 'standard' OCX events, which are fired throw the 'standard' Xailer
events (OnDblClick, OnLButtonDown, OnMouseMove and OnLButtonUp). There are
also other 3 similar events: OnClick, OnKeyDown and OnKeyUp.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Sab May 02, 2009 7:52 pm
por Xailer
Hello Jose
Many thanks for your answers, but how making those events to fire with our
ocx control. Is the TOcx class
"Classified", because not exists in the documantation.
TIA
Dionsisis
Ο "Jose F. Gimenez" <jfgimenez@wanadoo.es> έγραψε στο μήνυμα
news:49fc8390$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Dionisis,
>
>> Starting some tests with CodeJock Xtreme Suite for ActiveX, discover that
>> from the constructed classes ( from Import ActiveX) missing some
>> important events, like DblClick, MouseDown,MouseMove,MouseUp and some
>> important Methods like. So what really and trully hapens with this big
>> issue. Can we expect a 100% ActiveX support from Xailer2. What methods,
>> events, properties contains the "mysterious" ocx class.
>
> Those are 'standard' OCX events, which are fired throw the 'standard'
> Xailer events (OnDblClick, OnLButtonDown, OnMouseMove and OnLButtonUp).
> There are also other 3 similar events: OnClick, OnKeyDown and OnKeyUp.
>
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>

About OCX Class

Publicado: Sab May 02, 2009 7:52 pm
por Xailer
Hello Jose
Many thanks for your answers, but how making those events to fire with our
ocx control. Is the TOcx class
"Classified", because not exists in the documantation.
TIA
Dionsisis
Ο "Jose F. Gimenez" <jfgimenez@wanadoo.es> έγραψε στο μήνυμα
news:49fc8390$[email=1@svctag-j7w3v3j....]1@svctag-j7w3v3j....[/email]
> Dionisis,
>
>> Starting some tests with CodeJock Xtreme Suite for ActiveX, discover that
>> from the constructed classes ( from Import ActiveX) missing some
>> important events, like DblClick, MouseDown,MouseMove,MouseUp and some
>> important Methods like. So what really and trully hapens with this big
>> issue. Can we expect a 100% ActiveX support from Xailer2. What methods,
>> events, properties contains the "mysterious" ocx class.
>
> Those are 'standard' OCX events, which are fired throw the 'standard'
> Xailer events (OnDblClick, OnLButtonDown, OnMouseMove and OnLButtonUp).
> There are also other 3 similar events: OnClick, OnKeyDown and OnKeyUp.
>
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>

About OCX Class

Publicado: Sab May 02, 2009 8:48 pm
por jfgimenez
Dionisis,
> Many thanks for your answers, but how making those events to fire with
> our ocx control. Is the TOcx class
> "Classified", because not exists in the documantation.
You may assign them as any other event. The drawback is that OCX are not
fully integrated in the IDE yet (sorry for that), so you need to do it
manually. F.e.:
::oMyOcx:OnClick := "MyOcxOnClick"
...
METHOD MyOcxOnClick( oSender ) CLASS TForm1
...
RETURN Nil
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Sab May 02, 2009 8:48 pm
por jfgimenez
Dionisis,
> Many thanks for your answers, but how making those events to fire with
> our ocx control. Is the TOcx class
> "Classified", because not exists in the documantation.
You may assign them as any other event. The drawback is that OCX are not
fully integrated in the IDE yet (sorry for that), so you need to do it
manually. F.e.:
::oMyOcx:OnClick := "MyOcxOnClick"
...
METHOD MyOcxOnClick( oSender ) CLASS TForm1
...
RETURN Nil
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 04, 2009 9:16 am
por Oleg
Jose!
It seems that Xailer OCX support is not good when OCX control is interactive
(receive mouse or key input from user). For example, I have this sample
project that operates with MS FlexGrid control. It can receive mouse input
(changes current cell) but it does not receive key input when I press
Up/Down/Left/Right keys (does not change current cell).
How can I make MS FlexGrid control process Up/Down/Left/Right keys in
Xailer2 ?
Similar project in Delphi is working fine.
Regards, Oleg

About OCX Class

Publicado: Lun May 04, 2009 9:16 am
por Oleg
Jose!
It seems that Xailer OCX support is not good when OCX control is interactive
(receive mouse or key input from user). For example, I have this sample
project that operates with MS FlexGrid control. It can receive mouse input
(changes current cell) but it does not receive key input when I press
Up/Down/Left/Right keys (does not change current cell).
How can I make MS FlexGrid control process Up/Down/Left/Right keys in
Xailer2 ?
Similar project in Delphi is working fine.
Regards, Oleg

About OCX Class

Publicado: Lun May 04, 2009 11:41 am
por jfgimenez
Oleg,
> It seems that Xailer OCX support is not good when OCX control is
> interactive (receive mouse or key input from user). For example, I have
> this sample project that operates with MS FlexGrid control. It can receive
> mouse input (changes current cell) but it does not receive key input when
> I press Up/Down/Left/Right keys (does not change current cell).
>
> How can I make MS FlexGrid control process Up/Down/Left/Right keys in
> Xailer2 ?
> Similar project in Delphi is working fine.
Please, send us a sample to check it. Every OCX is a different world, and
things that work for many OCX could not work for anothers.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 04, 2009 11:41 am
por jfgimenez
Oleg,
> It seems that Xailer OCX support is not good when OCX control is
> interactive (receive mouse or key input from user). For example, I have
> this sample project that operates with MS FlexGrid control. It can receive
> mouse input (changes current cell) but it does not receive key input when
> I press Up/Down/Left/Right keys (does not change current cell).
>
> How can I make MS FlexGrid control process Up/Down/Left/Right keys in
> Xailer2 ?
> Similar project in Delphi is working fine.
Please, send us a sample to check it. Every OCX is a different world, and
things that work for many OCX could not work for anothers.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 04, 2009 12:01 pm
por Oleg
Jose!
Sorry, I forgot to attach it. Here it is.
Regards, Oleg.


Attached files flex.zip (6.6 KB)Â

About OCX Class

Publicado: Lun May 04, 2009 12:01 pm
por Oleg
Jose!
Sorry, I forgot to attach it. Here it is.
Regards, Oleg.


Attached files flex.zip (6.6 KB)Â

About OCX Class

Publicado: Mar May 05, 2009 3:15 pm
por Xailer
Jose
Hello again. returning to TOcx class, is there any method to get aditional
properties, which not included in the class prg file.
TIA
Dionisis
"Oleg" <info@cluster.samara.ru> wrote in message
news:[email=49febce5@svctag-j7w3v3j....]49febce5@svctag-j7w3v3j....[/email]
> Jose!
>
> Sorry, I forgot to attach it. Here it is.
>
> Regards, Oleg.
>
>

About OCX Class

Publicado: Mar May 05, 2009 3:15 pm
por Xailer
Jose
Hello again. returning to TOcx class, is there any method to get aditional
properties, which not included in the class prg file.
TIA
Dionisis
"Oleg" <info@cluster.samara.ru> wrote in message
news:[email=49febce5@svctag-j7w3v3j....]49febce5@svctag-j7w3v3j....[/email]
> Jose!
>
> Sorry, I forgot to attach it. Here it is.
>
> Regards, Oleg.
>
>

About OCX Class

Publicado: Lun May 11, 2009 10:46 am
por jfgimenez
Oleg,
thanks for the sample. We'll try to review it ASAP.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 11, 2009 10:46 am
por jfgimenez
Oleg,
thanks for the sample. We'll try to review it ASAP.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 11, 2009 10:51 am
por jfgimenez
Dionisis,
> Hello again. returning to TOcx class, is there any method to get aditional
> properties, which not included in the class prg file.
The class prg is generated from the OCX's typelib, that is, its published
info about itself. But sometimes, an OCX has its own internal classes that
are not described in the typelib, or simply, they are classes that have to
be handled via TOleAuto. In both cases, they aren't generated in the class
prg, but should be described in the component documentacion.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 11, 2009 10:51 am
por jfgimenez
Dionisis,
> Hello again. returning to TOcx class, is there any method to get aditional
> properties, which not included in the class prg file.
The class prg is generated from the OCX's typelib, that is, its published
info about itself. But sometimes, an OCX has its own internal classes that
are not described in the typelib, or simply, they are classes that have to
be handled via TOleAuto. In both cases, they aren't generated in the class
prg, but should be described in the component documentacion.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info

About OCX Class

Publicado: Lun May 11, 2009 11:51 am
por Xailer
Hello Jose
Yes you are 100% write. I can use xHarbour CreateObject(), to have access
to aditional object classes.
Many Thanks
Dionisis
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=4a07e5d6@svctag-j7w3v3j....]4a07e5d6@svctag-j7w3v3j....[/email]
> Oleg,
>
> thanks for the sample. We'll try to review it ASAP.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>

About OCX Class

Publicado: Lun May 11, 2009 11:51 am
por Xailer
Hello Jose
Yes you are 100% write. I can use xHarbour CreateObject(), to have access
to aditional object classes.
Many Thanks
Dionisis
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:[email=4a07e5d6@svctag-j7w3v3j....]4a07e5d6@svctag-j7w3v3j....[/email]
> Oleg,
>
> thanks for the sample. We'll try to review it ASAP.
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
> http://www.xailer.info
>

About OCX Class

Publicado: Mar May 12, 2009 12:28 pm
por Oleg
Jose!
Ok. I will wait.
Regards,
Oleg

About OCX Class

Publicado: Mar May 12, 2009 12:28 pm
por Oleg
Jose!
Ok. I will wait.
Regards,
Oleg