Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
5k views

Excel 2007 UDF: how to add function description, argument help?

The description I am writing a couple of Excel UDFs in COM Servers. I'd like to get the standard help (Insert Function dialog) that you get when you press fx. Yes, I can see my COM Server listed in ...
2
votes
1answer
69 views

Create COM server with Ruby?

Ruby on Windows has the win32::ole library that allows Ruby to act as a COM client, similar to VBScript and other scripting languages (Python, Perl, etc. with win32 bindings). However, I am wondering ...
2
votes
1answer
192 views

Get Process ID of COM Server

I'm doing some automation via a combination of windows message sending directly to HWNDs and calls to a COM server exposed by the automated application. If there is more than one instance running, I ...
1
vote
1answer
18 views

MATLAB interop server (automation server) is available with Runtime libraries?

I am trying to figure out whether it is possible to use the MATLAB COM server (automation server) without installing the whole MATLAB package (but only the runtime libraries).
1
vote
2answers
39 views

How to specify which COM server my .NET interop should use?

I've got a .NET application which uses a COM server. The COM server is registered on the machine where I run it, so when my code reaches new MyInterop.SomeObject() the appropriate MyComServer.exe is ...
1
vote
1answer
89 views

How to handle COM events in console application with ATL - client's suspensions

I'm totally new in COM programming. I have big problem. I’m trying to handle events from CANoe application via COM Server. Firstly I tried do it in native C++ but without results. Now I’m trying it ...
1
vote
1answer
139 views

How to access sub object in CANoe COM Server Interface

I have one big and difficult to understand problem with COM Server. I’m trying write client application to CANoe (application by Vector). They gave CANoe.tlb, CANoe.h and CANoe_i.cpp files but I use ...
1
vote
1answer
85 views

Is there any harm in killing a COM server without releasing com objects in .net?

Folks - I'm creating many COM servers (I'm launching numerous EXEs) in .net, talking to COM via COM -interop, using numerous COM objects in the server, etc. If I kill the process, is there any harm? ...
0
votes
1answer
131 views

IContextMenu::QueryContextMenu being called, but IContextMenu::InvokeCommand doesn't

In my implementation of IContextMenu COM server, the QueryContextMenu gets called (can see it with logging) but InvokeCommand doesn't. Here is the QueryContextMenu: HRESULT ...
0
votes
0answers
76 views

tlibimp.exe output differs on different OSes (Borland)

I'm trying to import a third-party .NET type library (COM server DLL) using tlibimp.exe (version 11.0). This basically works fine, but the results differ when I run it on different computers, one ...
0
votes
1answer
99 views

Is Windows Com Server with multiple clients connected multi threaded?

I have a com server that is started in the following way: extern "C" int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE /*hPrevInstance*/, LPTSTR lpCmdLine, int /*nShowCmd*/) { lpCmdLine = ...
0
votes
2answers
69 views

Out of Process COM Server - can't create file

I'm attempting to run the following piece of code from an Out-of-Process COM Server in its main thread, however no file is ever created. I wondered if anyone can tell me why this is? FILE *f = ...