Tagged Questions
The com-interface tag has no wiki summary.
2
votes
1answer
4k views
What is the best way to access a serial port from VBA?
What is the best way to access a serial port from VBA?
I have a need for some of our sales reps to be able to send a simple string over the serial port from an action button in PowerPoint. I don't ...
2
votes
1answer
169 views
Is there a way to tell whether two COM interface references point at the same instance?
Given two interface references obtained from different sources. Is there a programmatic way to tell whether they're implemented by the same instance?
A simple equality check of the interface ...
1
vote
2answers
54 views
COM coobjects and interfaces C#
I am completely new to this and am following a tutorial on msdn: http://msdn.microsoft.com/en-us/library/aa645736(v=vs.71).aspx#vcwlkcominteroppart1cclienttutorialanchor2
My question is why do we use ...
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 ...
1
vote
2answers
141 views
C# Partial Class and COM Interface
I'm creating a C# library and am going to expose a COM interface to it.
I understand the steps requried to do this, i.e.
Ensure assumbly GUID is assigned, e.g:
[assembly: ...
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
133 views
How do I set up a COM Server interface with Excel?
Versions
Excel 2003Windows XP SimaPro 7.3.0 Developer Version Using a Work computer but was made administrator on this machine Libraries referenced in Excel/VBA: Visual Basic for Applications; ...
0
votes
1answer
557 views
Problem with Matlab .Net assembly (Undefined function or variable 'feedforwardnet')
I'm trying to integrate "Matlab 2010b" with "Visual Studio 2008 professional"
I have the following Matlab method:
function varargout = perform( func, varargin )
%% // Set Default Values
...
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 ...