CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2000
    Location
    NY
    Posts
    12

    ActiveX security

    I have an HTML page that uses an ActiveX Control, every time the ActiveX is being used a warning dialog box pops up and recommend the user not to continue. Can any one tell me how can I sign my ActiveX as safe for use. I’m pretty new to VB so the more details the better.

    Thanks.



  2. #2
    Join Date
    Jan 2000
    Location
    Germany
    Posts
    8

    Re: ActiveX security

    Add this 2 Keys at Registry

    HKEY_LOCAL_MASCHINE\SOFTWARE\Classes\CLSID\your control clsid\CLSID\Implemented Categories\{7DD95802-9882-11CF-9FA9-00AA006C42C4}"

    HKEY_LOCAL_MASCHINE\SOFTWARE\Classes\CLSID\your control clsid\CLSID\Implemented Categories\{7DD95801-9882-11CF-9FA9-00AA006C42C4}"

    "your control clsid" you find at your ActiveX-Document (DHMTL etc.)

    bye


  3. #3
    Join Date
    May 1999
    Posts
    3,332

    Re: ActiveX security

    if you have the sourcecode for your activex control, you can use the code in msdn article Q182598 to implement the IObjectSafety interface for your control.
    I have done that and it works perfectly.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured