COleDispatchDriver::CreateDispatch
Crée un objet d'interface d' IDispatch et l'attache à l'objet d' COleDispatchDriver .
BOOL CreateDispatch(
REFCLSID clsid,
COleException* pError = NULL
);
BOOL CreateDispatch(
LPCTSTR lpszProgID,
COleException* pError = NULL
);
Paramètres
clsid
ID de classe de l'objet de Connexion d' IDispatch à créer.pError
Pointeur vers un objet OLE exception, qui contiendra le code d'état résultant de la création.lpszProgID
Pointeur vers l'identificateur programmatique, tel que « Excel.Document.5 », l'objet Automation pour lequel l'objet d'expédition doit être créé.
Valeur de retour
Une valeur différente de zéro en cas de réussite ; sinon 0.
Exemple
void COleContainerView::OnCreateDispatch()
{
COleDispatchDriver disp;
COleException* pe = new COleException;
try
{
// Create instance of Microsoft System Information Control
// by using ProgID.
if (disp.CreateDispatch(_T("WMPlayer.OCX"), pe))
{
//Get uiMode.
CString strUIMode;
disp.InvokeHelper(23, DISPATCH_PROPERTYGET, VT_BSTR,
(void*)&strUIMode, NULL);
CString strMsg;
strMsg.Format(_T("WMP uiMode is %s."), strUIMode);
AfxMessageBox(strMsg);
}
else
{
throw pe;
}
}
//Catch control-specific exceptions.
catch (COleDispatchException* pe)
{
CString cStr;
if (!pe->m_strSource.IsEmpty())
cStr = pe->m_strSource + _T(" - ");
if (!pe->m_strDescription.IsEmpty())
cStr += pe->m_strDescription;
else
cStr += _T("unknown error");
AfxMessageBox(cStr, MB_OK,
(pe->m_strHelpFile.IsEmpty()) ? 0 : pe->m_dwHelpContext);
pe->Delete();
}
//Catch all MFC exceptions, including COleExceptions.
// OS exceptions will not be caught.
catch (CException* pe)
{
TRACE(_T("%s(%d): OLE Execption caught: SCODE = %x"),
__FILE__, __LINE__, COleException::Process(pe));
pe->Delete();
}
pe->Delete();
}
Configuration requise
Header: afxdisp.h
Voir aussi
Référence
COleDispatchDriver::DetachDispatch
COleDispatchDriver::ReleaseDispatch