最新消息

[公告2014/05/30] 如有需要將部落格中,任何一篇文章的程式碼使用在商業用途,請與我聯繫。

[公告2015/04/26] Line版的 iInfo程式與投資應用 群組已上線想加入的朋友們,請先查看 "入群須知" 再與我聯繫 Line : aminwhite5168,加入請告知身分與回答 "入群須知" 的問題。

[公告2018/04/22] 台北 Python + Excel VBA 金融資訊爬蟲課程,課程如網頁內容 金融資訊爬蟲班:台北班 Python 金融資訊爬蟲、EXCEL VBA 金融資訊爬蟲

[公告2019/01/08] 請注意:我再次重申,部落格文章的程式碼,是要提供各位參考與學習,一旦網頁改版請自行修改,別要求東要求西要我主動修改,你們用我寫東西賺錢了、交差了,請問有分我一杯羹嗎?既然賺錢沒分我,請問有什麼理由要求我修改,如果沒能力改,就花錢來找我上課。

[公告2019/12/01] 若各位有 Excel VBA 案子開發需求,歡迎與我聯繫,可接案處理。

[公告2020/05/22] 頁面載入速度慢,起因為部分JS來源(alexgorbatchev.com)失效導致頁面載入變慢,目前已做調整,請多見諒。

2017年2月5日 星期日

.NET C# 建立 COM元件 (4) --- VC++呼叫COM元件函數

在知道如何透過C#建立COM元件,那筆者也將VC++如何呼叫C#產生出來的COM DLL。
一樣使用前面的C#範例,來做一些修改。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;

namespace TestVBA
{
    [Guid("6EE994BA-95B5-4548-98CB-B87663557880")]
    public interface IVBAFunc
    {
        [DispId(1)]
        int Multiply(int a, int b);
    }

    [Guid("A4F15491-8F1B-49C3-B626-589ECBCC60E7")]
    [ClassInterface(ClassInterfaceType.None)] //表示沒有為該class產生COM介面
    [ProgId("TestVBA.VBAFunc")]
    public class VBAFunc : IVBAFunc
    {
        public int Multiply(int a, int b)
        {
            return a * b;
        }
    }
}
以VC++開一個TestCOM專案,輸入以下程式碼。
#include "TestCOM.h"
#import "C:\Code\TestVBA\TestVBA\bin\Release\TestVBA.tlb" raw_interfaces_only

using namespace TestVBA;
using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
 // Initialize COM.
 long lResult = 0;
 HRESULT hr = CoInitialize(NULL);
 
 // Create the interface pointer.
 IVBAFuncPtr pIVBAFunc(__uuidof(VBAFunc));
 
 // Call the Add method.
 pIVBAFunc->Multiply(5, 10, &lResult);
 
 wprintf(L"The result is %d\n", lResult); 
 
 // Uninitialize COM.
    CoUninitialize();
 return 0;
}
或是
#import "C:\Code\TestVBA\TestVBA\bin\Release\TestVBA.tlb" raw_interfaces_only
using namespace TestVBA;
using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
 // Initialize COM.
 long lResult = 0;
 HRESULT hr = CoInitialize(NULL);
 
 // Create the interface pointer.
 IVBAFuncPtr pVBAFuncPtr;
 HRESULT hRes = pVBAFuncPtr.CreateInstance(CLSID_VBAFunc);
 if (hRes == S_OK) 
 {
  // Call the Add method.
  pVBAFuncPtr->Multiply(10, 3, &lResult);
 } 
 
 wprintf(L"The result is %d\n", lResult); 
 
 // Uninitialize COM.
    CoUninitialize();
 return 0;
}
或是
#include "TestCOM.h"
#import "C:\Code\TestVBA\TestVBA\bin\Release\TestVBA.tlb" raw_interfaces_only

using namespace TestVBA;
using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
 // Initialize COM.
 long lResult = 0;
 HRESULT hr = CoInitialize(NULL);
 
 //Get clsid by namespace and classname
 CLSID clsid;
 BSTR bstrDLL = _com_util::ConvertStringToBSTR("TestVBA.VBAFunc");
 HRESULT hResult = ::CLSIDFromProgID(bstrDLL, &clsid);
 if (!SUCCEEDED(hResult)) {
     return 1;
 }

 // Create the interface pointer.
 IVBAFuncPtr pIVBAFunc(clsid);

 // Call the Add method.
 pIVBAFunc->Multiply(5, 10, &lResult);
 
 wprintf(L"The result is %d\n", lResult); 
 
 // Uninitialize COM.
 CoUninitialize();

 return 0;
}
執行結果:

相關文章:
參考資料: