Click here to Skip to main content
15,906,567 members
Home / Discussions / COM
   

COM

 
QuestionRe: Speed difference between CoCreateInstance and new operator Pin
CPallini19-Feb-09 5:30
mveCPallini19-Feb-09 5:30 
AnswerRe: Speed difference between CoCreateInstance and new operator Pin
Alexandre GRANVAUD28-May-09 21:04
Alexandre GRANVAUD28-May-09 21:04 
GeneralRe: Speed difference between CoCreateInstance and new operator Pin
CPallini28-May-09 21:32
mveCPallini28-May-09 21:32 
GeneralRe: Speed difference between CoCreateInstance and new operator Pin
Alexandre GRANVAUD28-May-09 21:46
Alexandre GRANVAUD28-May-09 21:46 
GeneralRe: Speed difference between CoCreateInstance and new operator Pin
CPallini28-May-09 21:56
mveCPallini28-May-09 21:56 
QuestionKnow if a dll COM is registred or no! Pin
MrKBA19-Feb-09 2:42
MrKBA19-Feb-09 2:42 
QuestionRe: Know if a dll COM is registred or no! Pin
CPallini19-Feb-09 2:49
mveCPallini19-Feb-09 2:49 
AnswerRe: Know if a dll COM is registred or no! Pin
MrKBA19-Feb-09 3:31
MrKBA19-Feb-09 3:31 
i just create an instance of a class in this dll and after i do a test if it is registred or no .this are some lines of code which can explain what i need exactly:

CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
hRes = TContext::CreateInstanceNoAppID(CLSID_TLibraryInformation_SeeEdbUI, &piLibInfoSeeEdbUI);
if(FAILED(hRes))
{
if(hRes == REGDB_E_CLASSNOTREG)
{
strTemp.LoadString(IDS_SEEEDBUIDLL_NOT_FOUND);
TErrorTool::DisplayErrorStack(TRUE, _bstr_t(strTemp));
}
else
{
strTemp.LoadString(IDS_SEEEDBUIDLL_NOT_FOUND);
TErrorTool::DisplayErrorStack(TRUE, _bstr_t(strTemp));
}
exit(0);
}
QuestionRe: Know if a dll COM is registred or no! Pin
CPallini19-Feb-09 5:02
mveCPallini19-Feb-09 5:02 
AnswerRe: Know if a dll COM is registred or no! Pin
MrKBA19-Feb-09 5:07
MrKBA19-Feb-09 5:07 
QuestionRe: Know if a dll COM is registred or no! Pin
CPallini19-Feb-09 5:14
mveCPallini19-Feb-09 5:14 
AnswerRe: Know if a dll COM is registred or no! Pin
MrKBA19-Feb-09 6:35
MrKBA19-Feb-09 6:35 
QuestionHow do I convert IDL to ODL and make a Typelib necessary only for the compile? Pin
Bruce Axtens19-Feb-09 2:15
Bruce Axtens19-Feb-09 2:15 
QuestionProblem with SAFEARRAY across COM boundary Pin
astropunk18-Feb-09 12:46
astropunk18-Feb-09 12:46 
QuestionDoes anyone know of a tool for reporting differences between two versions of the same typelib? Pin
pdohara18-Feb-09 11:11
pdohara18-Feb-09 11:11 
AnswerRe: Does anyone know of a tool for reporting differences between two versions of the same typelib? Pin
«_Superman_»18-Feb-09 18:06
professional«_Superman_»18-Feb-09 18:06 
GeneralRe: Does anyone know of a tool for reporting differences between two versions of the same typelib? Pin
pdohara19-Feb-09 11:27
pdohara19-Feb-09 11:27 
GeneralRe: Does anyone know of a tool for reporting differences between two versions of the same typelib? Pin
«_Superman_»19-Feb-09 18:02
professional«_Superman_»19-Feb-09 18:02 
GeneralRe: Does anyone know of a tool for reporting differences between two versions of the same typelib? Pin
pdohara23-Feb-09 9:11
pdohara23-Feb-09 9:11 
QuestionError : hr 0x80040154 Class not registered Pin
pandit8418-Feb-09 3:47
pandit8418-Feb-09 3:47 
QuestionRe: Error : hr 0x80040154 Class not registered Pin
«_Superman_»18-Feb-09 17:59
professional«_Superman_»18-Feb-09 17:59 
AnswerRe: Error : hr 0x80040154 Class not registered Pin
pandit8418-Feb-09 18:29
pandit8418-Feb-09 18:29 
QuestionInvalid callee error when calling COM function Pin
vineeshV18-Feb-09 1:32
vineeshV18-Feb-09 1:32 
QuestionIXMLHTTPRequest only seems to work once! [modified] Pin
Henrik Nelson18-Feb-09 1:05
Henrik Nelson18-Feb-09 1:05 
QuestionExcel's 2007 WorkbookBeforeSave Interface cancel problem Pin
nitincop18-Feb-09 0:58
nitincop18-Feb-09 0:58 

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.