CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2001
    Posts
    8

    difference between Activex.dll and Activex.ocx

    Whats the difference difference between Activex.dll and Activex.ocx?





  2. #2
    Join Date
    Jun 2001
    Location
    Sri Lanka
    Posts
    272

    Re: difference between Activex.dll and Activex.ocx

    ActiveX ocx:
    User created control having a user interface and can be put to a container as a Form.
    eg. If v create a template having a specific fixed size and some controls, that has to be created as an ocx & can be added to any form.

    ActiveX dll: A class not having a visual interface, used to create objects, can be used without a form.
    eg. Employee class having attributes as Name, Age, Salary etc + Methods as SetIncrement() etc..

    Hope this is sufficient and if needed additional info is available


    If u don't know how to Rate an answer, then Rate my answer to learn, If u know, then practice it

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