| c++ Programming Glossary: pdispatchHow to retrieve the Interface ID of a COM class so that it can be passed to CoCreateInstance? http://stackoverflow.com/questions/2313432/how-to-retrieve-the-interface-id-of-a-com-class-so-that-it-can-be-passed-to-cocr  OLESTR Scripting.FileSystemObject ClassID IDispatch pDispatch if SUCCEEDED CoCreateInstance ClassID NULL CLSCTX_INPROC_SERVER.. ClassID NULL CLSCTX_INPROC_SERVER IID_IDispatch void pDispatch  OLECHAR sMember L FileExists DISPID idFileExists if SUCCEEDED.. sMember L FileExists DISPID idFileExists if SUCCEEDED pDispatch GetIDsOfNames  IID_NULL sMember 1 LOCALE_SYSTEM_DEFAULT idFileExists.. 
 How can I convert a JavaScript array() to an ATL/COM array? http://stackoverflow.com/questions/5014711/how-can-i-convert-a-javascript-array-to-an-atl-com-array  convert variant to dispatch object CComPtr IDispatch pDispatch VariantToDispatch var if pDispatch return false invoke the object.. CComPtr IDispatch pDispatch VariantToDispatch var if pDispatch return false invoke the object to retrieve the enumerator containing.. UINT uiArgErr UINT 1 initialize to invalid arg HRESULT hr pDispatch Invoke DISPID_NEWENUM   IID_NULL   LOCALE_USER_DEFAULT   DISPATCH_METHOD.. 
 |