Results 1 to 6 of 6

Thread: Nubie Question? What are COM Objects?

  1. #1

    Thread Starter
    Addicted Member techwizz's Avatar
    Join Date
    Apr 2005
    Location
    U.S.A.
    Posts
    246

    Nubie Question? What are COM Objects?

    Nubie Question? What are COM Objects?

    I've read very little about them and they seem to be very important?

    Anyone?

    Thanks ahead a time.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Nubie Question? What are COM Objects?

    COM objects, or Component Object Models, were developed, by Microsoft for Windows platforms to provide useful pre-packaged functionality. Microsoft also built their development platforms to provide programmers with the ability to build their own COM objects.


    This is a good introduction to COM tutorial for beginners by Karl Moore.

  3. #3

    Thread Starter
    Addicted Member techwizz's Avatar
    Join Date
    Apr 2005
    Location
    U.S.A.
    Posts
    246

    Re: Nubie Question? What are COM Objects?

    Thanks...

    what are some examples of the most common.. COM objects?

  4. #4
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    Re: Nubie Question? What are COM Objects?

    Everything that was an object in VB6 was a COM object.

    Classes
    UserControls
    Forms

    They all implement the IUknown interface, which makes them COM objects.
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  5. #5

    Thread Starter
    Addicted Member techwizz's Avatar
    Join Date
    Apr 2005
    Location
    U.S.A.
    Posts
    246

    Re: Nubie Question? What are COM Objects?

    AAA.... ok.

    Thanks.

  6. #6
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Nubie Question? What are COM Objects?

    Some of the most commonly used COM objects in .NET apps are the Microsoft Office applications. Also any ActiveX controls like the old AxWebBrowser, AxWindowsMediaPlayer, etc. are also COM objects. When you use COM objects in a .NET app an Interop wrapper assembly is created so that your app communicates with the .NET Interop assembly, which then communicates with the actual COM object. This allows you to treat COM objects virtually the same as any .NET type.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

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