Click here to Skip to main content
16,006,341 members
Home / Discussions / COM
   

COM

 
AnswerRe: EXCEPINFO cleanup Pin
NiceNaidu18-May-06 4:02
NiceNaidu18-May-06 4:02 
GeneralRe: EXCEPINFO cleanup Pin
jan larsen18-May-06 8:35
jan larsen18-May-06 8:35 
QuestionEarly Vs Late Binding Pin
NiceNaidu18-May-06 1:43
NiceNaidu18-May-06 1:43 
AnswerRe: Early Vs Late Binding Pin
_AnsHUMAN_ 18-May-06 2:50
_AnsHUMAN_ 18-May-06 2:50 
AnswerRe: Early Vs Late Binding Pin
Laxman Auti18-May-06 2:52
Laxman Auti18-May-06 2:52 
GeneralRe: Early Vs Late Binding Pin
NiceNaidu18-May-06 3:40
NiceNaidu18-May-06 3:40 
QuestionGetting the IHtmlElementRender interface Pin
Anamika200517-May-06 23:45
Anamika200517-May-06 23:45 
AnswerRe: Getting the IHtmlElementRender interface Pin
Laxman Auti18-May-06 0:17
Laxman Auti18-May-06 0:17 
AnswerRe: Getting the IHtmlElementRender interface Pin
_AnsHUMAN_ 20-May-06 0:51
_AnsHUMAN_ 20-May-06 0:51 
Questionwhich files anre needed to include forI HTMLElementRender Pin
Hemant kulkarni17-May-06 23:26
Hemant kulkarni17-May-06 23:26 
AnswerRe: which files anre needed to include forI HTMLElementRender Pin
Laxman Auti17-May-06 23:34
Laxman Auti17-May-06 23:34 
GeneralRe: which files anre needed to include forI HTMLElementRender Pin
Hemant kulkarni17-May-06 23:37
Hemant kulkarni17-May-06 23:37 
GeneralRe: which files anre needed to include forI HTMLElementRender Pin
Laxman Auti17-May-06 23:46
Laxman Auti17-May-06 23:46 
AnswerRe: which files anre needed to include forI HTMLElementRender Pin
Laxman Auti18-May-06 0:04
Laxman Auti18-May-06 0:04 
QuestionATL COM object.. Pin
Siva Sankar Koyi17-May-06 18:38
Siva Sankar Koyi17-May-06 18:38 
AnswerRe: ATL COM object.. Pin
Laxman Auti17-May-06 19:11
Laxman Auti17-May-06 19:11 
GeneralRe: ATL COM object.. Pin
Siva Sankar Koyi17-May-06 19:34
Siva Sankar Koyi17-May-06 19:34 
AnswerRe: ATL COM object.. Pin
Laxman Auti17-May-06 23:23
Laxman Auti17-May-06 23:23 
GeneralRe: ATL COM object.. Pin
Siva Sankar Koyi20-May-06 20:19
Siva Sankar Koyi20-May-06 20:19 
AnswerRe: ATL COM object.. Pin
Laxman Auti21-May-06 18:26
Laxman Auti21-May-06 18:26 
GeneralRe: ATL COM object.. Pin
Renjith Ramachandran26-May-06 4:58
Renjith Ramachandran26-May-06 4:58 
GeneralRe: ATL COM object.. Pin
Siva Sankar Koyi27-May-06 1:24
Siva Sankar Koyi27-May-06 1:24 
GeneralRe: ATL COM object.. Pin
Logan from Singapore20-Jun-06 21:57
Logan from Singapore20-Jun-06 21:57 
QuestionHow create a com object successfully! Pin
hdj831117-May-06 17:32
hdj831117-May-06 17:32 
Hello all:
I create a com object like follows:
IATLDiceHelpPtr pATLDiceHelp;
HRESULT hr = pATLDiceHelp.CreateInstance(__uuidof(IATLDiceHelp));
if(pATLDiceHelp)
{
pATLDiceHelp->MsgBox(); // here can not execute
pATLDiceHelp->Release();
}
when executethis code,the variable hr is -2147221164;
can everyone tell me why it is failure? and how to fixed it?Thanks a lot!

more information:
interface definition:
[
object,
uuid(C4892EC8-E170-426C-AB99-7E3B403B0324),
dual,
helpstring("IATLDiceHelp Interface"),
pointer_default(unique)
]
interface IATLDiceHelp : IDispatch
{
[id(1), helpstring("method MessageBox")] HRESULT MsgBox();
};

AnswerRe: How create a com object successfully! Pin
Stephen Hewitt17-May-06 18:00
Stephen Hewitt17-May-06 18:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.