Click here to Skip to main content
15,907,183 members
Home / Discussions / COM
   

COM

 
GeneralRe: Using ISyncMgrRegister Pin
MichaelPine17-Apr-05 22:07
MichaelPine17-Apr-05 22:07 
Generalerror in loading .dll Pin
Peter GW22-Apr-04 5:17
Peter GW22-Apr-04 5:17 
GeneralCOM+ Transaction err0r Pin
versatile_me21-Apr-04 18:03
versatile_me21-Apr-04 18:03 
GeneralLoad COM from a remote location Pin
Fabio Panzavolta21-Apr-04 3:47
Fabio Panzavolta21-Apr-04 3:47 
GeneralCreateDispatch AccessDenied Pin
shiraztk21-Apr-04 0:49
shiraztk21-Apr-04 0:49 
GeneralCOM tutorials Pin
Poorniselva21-Apr-04 0:41
Poorniselva21-Apr-04 0:41 
Generalexposing a class library as a COM object Pin
User 96257820-Apr-04 9:41
User 96257820-Apr-04 9:41 
GeneralCatching COM Events without using ATL Pin
jerry0davis20-Apr-04 5:09
jerry0davis20-Apr-04 5:09 
I'm using a COM API for a VoIP Voice phone. I can interrogate it fine using the following code...

IVOIPDevice* pISL = NULL;<br />
HRESULT hr;<br />
	<br />
	hr = CoCreateInstance(<br />
		CLSID_VOIPDevice,		// CLSID of coclass<br />
		NULL,                   // not used - aggregation<br />
        CLSCTX_INPROC_SERVER,<br />
		IID_IVOIPDevice,        // IID of interface<br />
		(void**) &pISL);        // Pointer to our interface pointer<br />
	<br />
	if (SUCCEEDED(hr))<br />
	{<br />
        // Call methods using pISL here.<br />
		TRACE("SUCCEED!!!!\n");<br />
	}<br />
    else<br />
	{<br />
        // Couldn't create the COM object.  hr holds the error code.<br />
		TRACE("SUCCEED NOT!!!!\n");<br />
return;<br />
	}<br />
<br />
pISL->etc etc etc


The interface for the events is _IVOIPDeviceEvents. How can I act on these events? I'd rather not use ATL if at all possible.



I feel like I'm diagonally parked in a parallel universe

Jerry Davis
http://www.astad.org
http://www.jvf.co.uk
GeneralRe: Catching COM Events without using ATL Pin
Mike Dimmick20-Apr-04 5:54
Mike Dimmick20-Apr-04 5:54 
GeneralError MIDL1001 : cannot open input file oaidl.idl Pin
M Ashok Kumar20-Apr-04 2:26
M Ashok Kumar20-Apr-04 2:26 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
Steve S20-Apr-04 2:31
Steve S20-Apr-04 2:31 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
M Ashok Kumar20-Apr-04 2:38
M Ashok Kumar20-Apr-04 2:38 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
Anonymous20-Apr-04 4:28
Anonymous20-Apr-04 4:28 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
Mike Dimmick20-Apr-04 6:32
Mike Dimmick20-Apr-04 6:32 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
M Ashok Kumar20-Apr-04 20:19
M Ashok Kumar20-Apr-04 20:19 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
Steve S20-Apr-04 21:52
Steve S20-Apr-04 21:52 
GeneralRe: Error MIDL1001 : cannot open input file oaidl.idl Pin
M Ashok Kumar20-Apr-04 22:02
M Ashok Kumar20-Apr-04 22:02 
GeneralWindows Xp2 Firewall Pin
Member 1697720-Apr-04 1:57
Member 1697720-Apr-04 1:57 
QuestionHow to support file versioning related issues Pin
Anonymous19-Apr-04 21:17
Anonymous19-Apr-04 21:17 
GeneralCOM and C# question Pin
User 96257819-Apr-04 10:29
User 96257819-Apr-04 10:29 
QuestionHow to minimize the size of ATLCOM Pin
Anonymous19-Apr-04 8:09
Anonymous19-Apr-04 8:09 
AnswerRe: How to minimize the size of ATLCOM Pin
Mike Dimmick19-Apr-04 8:51
Mike Dimmick19-Apr-04 8:51 
GeneralFull control difference Pin
Abhi Lahare18-Apr-04 20:16
Abhi Lahare18-Apr-04 20:16 
GeneralDetecting client path Pin
sumudu18-Apr-04 20:03
sumudu18-Apr-04 20:03 
GeneralGetting Started with Com+ Pin
Hemant Mane18-Apr-04 19:34
Hemant Mane18-Apr-04 19:34 

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.