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

    whats ocx control?

    what is an ocx control?
    where can i get info regarding the same?


  2. #2
    Join Date
    Jan 2000
    Posts
    4

    Re: whats ocx control?

    Do you mean user control? I think it is part of Active X control. When you compile it, you will create OCX.



  3. #3
    Join Date
    Aug 1999
    Location
    Pakistan
    Posts
    366

    Re: whats ocx control?

    OCX stands for OLE CONTROL Extension.As an example a command button is an ocx control.You can also build your own and then embed them using OLE technology in other applications like WOrd ,excel,PPT etc.
    one of the good books available is teach Yourself ActiveX programming in 21 days by sybex



  4. #4
    Join Date
    May 1999
    Location
    India
    Posts
    9

    Re: whats ocx control?

    OCX was previously known as OLE Controls and now it has become OCX - OLE Controls Extension. We can create our own OCX Controls With Visual Basic 6.0 and u can just distribute to anyone like we are using combo box, list box they are all activeX controls (OCX Controls) for example we are using a graph control in VB 6.0 called Pinnacle graph control this will under the name called graph32.ocx see the extension like that every control will have a name with extension .ocx

    We have lot of resources in the internet one good site is www.agendumsoftware.com where u'll have more abt ocx.

    I think this would have helped u .

    If not mail me .

    bye
    bharat





  5. #5
    Join Date
    Jun 2001
    Posts
    11

    Re: whats ocx control?

    How do we embed these OCX files into our exe applications?


  6. #6
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: whats ocx control?

    You do not imbed them in your APP. You reference them in Projects/References and when distributing your app, you include the .ocx in the distribution.

    John G

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