Tagged Questions
1
vote
2answers
148 views
COM interop interface casting
Following this article, I have successfully translated C++ COM class/interface declaration into C# like this:
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid(IfaceGuid)]
public interface ...
0
votes
0answers
50 views
how HRESULT return value is set while calling com-interop methods?
*CString sWallpaper = wszWallpaper; // Convert the wallpaper path to ANSI
IShellLink* pISL;
IPersistFile* pIPF;
// 1. Initialize the COM library (make Windows load the DLLs). Normally you ...
0
votes
1answer
101 views
Error calling ctor of signed COM .Net DLL
if've got a problem with a sigend .Net COM DLL and I try to call the ctor of this class in VB6 but it only works on my machine, but not on the other developer machines. The error is 0x80131534.
The ...