Board index » delphi » ActiveX controls Trivia (Control Data)

ActiveX controls Trivia (Control Data)

  CControlData: TControlData = (
    ClassID: '{A1FF59A0-0995-11CF-B3E8-00608C82AA8D}';
    EventIID: '{A1FF59A2-0995-11CF-B3E8-00608C82AA8D}';
    EventCount: 21;
    EventDispIDs: @CEventDispIDs;
    LicenseKey: @CLicenseKey;
    Flags: $00000009;  <<================ What's this?
    Version: 300;
    FontCount: 1;
    FontIDs: @CTFontIDs);

and where'd the answer come from
Virtual hugs for an answer.....

 

Re:ActiveX controls Trivia (Control Data)


Jill Marquiss <NotAvaila...@anywhere.com> wrote in article
<01bc5ca2$680b4e40$0b29eace@gopher>...

Quote
>   CControlData: TControlData = (
>     ClassID: '{A1FF59A0-0995-11CF-B3E8-00608C82AA8D}';
>     EventIID: '{A1FF59A2-0995-11CF-B3E8-00608C82AA8D}';
>     EventCount: 21;
>     EventDispIDs: @CEventDispIDs;
>     LicenseKey: @CLicenseKey;
>     Flags: $00000009;  <<================ What's this?
>     Version: 300;
>     FontCount: 1;
>     FontIDs: @CTFontIDs);

> and where'd the answer come from
> Virtual hugs for an answer.....

Those are the OLEMISC status flags supported by the control.  They come
from the registry under the MiscStatus key under your control's CLSID.
You'll find all the flags defined in the ActiveX unit -- they all start
with "OLEMISC_".
--
     - Steve Teixeira
       steixe...@corp.borland.com

Other Threads