dll が正しく登録されているかどうかを実行時に確認するにはどうすればよいですか? 現在、次のことを試みていますが、.dll に登録されているにもかかわらず、dll が見つかりませんregsvr32
。Assembly クラスはシステム アセンブリに対してのみ機能しますか? その場合、独自のアセンブリには何を使用すればよいですか?
'check com dll connection for diagnostics
Try
Dim asm As Assembly = Assembly.LoadWithPartialName("mycomdll.mycomclass")
DebugText.AppendText("DLL registered" + vbNewLine)
Catch ex As Exception
DebugText.AppendText("DLL test failed" + vbNewLine)
DebugText.AppendText(ex.ToString() + vbNewLine)
End Try