|
-
Mar 13th, 2005, 08:14 AM
#1
Thread Starter
Registered User
What is DOM, COM, OLE, ATL
I see it in alots of website but dont know what it mean and its uses
Thanks
-
Mar 13th, 2005, 10:50 AM
#2
Re: What is DOM, COM, OLE, ATL
DOM = Document Object Model
COM = Component Object Model - all Objects in VB6 that are instantiated using the New keyword are COM Objects.
DCOM = Distributed COM.
OLE = previous name for COM
ActiveX = M$ marketing term for COM - generally used to refer to graphical COM objects.
ATL = A C++ Library for writing COM components.
COM is an open standard for obtaining in, and out of, process Components. When your code asks for a New COM Object, it is really the OS that delivers the Object to you, and you inject that Object into your program space.
The neat thing about DCOM is the same thing happens, but the Object you get is actually physically executing on another machine in the network.
Last edited by Dave Sell; Mar 13th, 2005 at 10:54 AM.
Nobody knows what software they want until after you've delivered what they originally asked for.
Don't solve problems which don't exist.
"If I had eight hours to cut down a tree, I'd spend six hours sharpening my axe." --- Abraham Lincoln (1809-1865)
2 idiots don't make a genius.
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
|