What I cannot figure out....
Okay, so if I compiled the class (with a property that is declared friend) as a DLL then any project I add that to can use that friended property BECAUSE the dll is part of the project and friended properties can be read anywhere in the project they are a part of.
If I compiled the project as an EXE then another project trying to uses the friended property in that EXE would NOT be able to see it.
Is that correct?
Thanks in advance for your help.
CreateObject vs. GetObject
Correct me if I am wrong:
The only major I see between these two:
The CreateObject function allows one to create the object TO a certian location. (create the object, put it there)
The GetObject function allows one to create an object FROM a certian location. (go there, find the object, create it)
Don't need details, just wondering if that is a good summary.
thanks in advance
Re: CreateObject vs. GetObject
Quote:
Originally posted by Gregg
Correct me if I am wrong:
The only major I see between these two:
The CreateObject function allows one to create the object TO a certian location. (create the object, put it there)
The GetObject function allows one to create an object FROM a certian location. (go there, find the object, create it)
Don't need details, just wondering if that is a good summary.
thanks in advance
Yupp, I would say that that is a correct description.