|
-
Jan 10th, 2006, 10:49 AM
#1
Thread Starter
Addicted Member
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.
-
Jan 10th, 2006, 11:39 AM
#2
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.
-
Jan 10th, 2006, 03:26 PM
#3
Thread Starter
Addicted Member
Re: Nubie Question? What are COM Objects?
Thanks...
what are some examples of the most common.. COM objects?
-
Jan 10th, 2006, 03:47 PM
#4
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
-
Jan 10th, 2006, 06:05 PM
#5
Thread Starter
Addicted Member
Re: Nubie Question? What are COM Objects?
-
Jan 10th, 2006, 08:40 PM
#6
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|