|
分類:[C# (ASP.NET)]
はじめまして、相当悩んでいますので、よいアドバイスを頂きたく投稿させて頂きました。 【環境】 OS : Windows XP Pro Web : IIS5.1 .NET : .NET Framework 2.0 言語 : 本体側PG⇒ASP.NET2.0(C#.NET) DLL側PG⇒VB.NET
【内容】 標記のように、VB.NETで作成した自作DLLを、ASP.NETで作成したWEBアプリ上で参照し、実行した際に下記のエラーが出、解決できません。 DLLはサーバ側のBinフォルダ内に入れています。参照設定済。(他のDllも入っており、正常動作している。)
【エラー内容】…Exceptionエラー内容 (Exception Message)ActiveX コンポーネントを作成できません。 (Exception Source)Microsoft.VisualBasic
本体側PGでは ********************************************************* using AAA;
AAA.Win_Class WinR = new AAA.Win_Class(); bool Rtn = WinR.Win_execute(string1,string2,string3,int) *********************************************************
DLL側PGでは AAA.Dll ********************************************************* Public Class Win_Class Public Function Win_execute(ByVal A As String, ByVal B As String, ByVal C As String, ByVal D As Integer) As Boolean BBB = CreateObject("BBB .Application") 〜処理〜 Win_execute = True End Function End Class *********************************************************
間違っているところ、不足しているところがありましたら、ご指摘ください。 宜しくお願いいたします。
|