有没有办法通过序号来调用函数
请教个问题,有没有办法通过序号(函数在activex DLL中的序号)来调用activex DLL中的函数号) --------------------编程问答-------------------- 仅供参考CString _Application::GetName()--------------------编程问答-------------------- http://blog.csdn.net/Modest/archive/2007/09/01/1767950.aspx可以根据名字来调用函数,而且还可以不注册 ActiveX DLL:
{
CString result;
InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
return result;
}
补充:VB , COM/DCOM/COM+