0
votes
2answers
12 views
Need message from ActiveX that runs in a thread
I have an activex control, that I developed myself. The activex runs in a thread to make sure that IE doesn't freeze when its executing the long task. The long task is pretty much looping through 32K …
1
vote
4answers
36 views
C# Outlook 2007 COM interop application does not exit!
Any ideas why the following code does not exit the Outlook 2007 process created via COM interop?
Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application();
…
0
votes
3answers
31 views
Is it possible to write an ActiveX control in C# .NET CF for windows mobile?
We have a piece of legacy code in C# .NET, targetted for the Compact Framework. We would like to turn this code into an ActiveX control, which has to run on the .NET Compact Framework under Windows …
0
votes
2answers
23 views
name mangling with def file and extern “C”
Hi,
I'm creating a basic COM component so I can practice creating them.
I'm exporting DllRegisterServer, DllUnregisterServer,DllGetClassObject and DllCanUnloadNow from a .def file with the PRIVATE …
0
votes
1answer
17 views
.NET dll in PowerBuilder (as COM) problem with Lists
All, I am trying to access a .NET dll registered as a COM Object with PowerBuilder 10. I keep running into problems where .NET objects return lists.
I have built out a very simple class for a proof …
0
votes
2answers
45 views
How to call win32 CreateMutex from .Net
Hello,
I've been successfully creating a .net mutex like this:
SingleIns = new Mutex(true, AppName);
for a while. It works in XP, Vista, but apparently not in Windows7. So I need to make an interop …
0
votes
2answers
20 views
Use VB6 COM DLL as a shell or interface with .NET code behind
I have a widely used but old VB6 COM DLL that needs additional functionality. I would like to get rid of the old DLL but it's used by at least 27 applications that I don't want to recompile.
Is …
1
vote
2answers
21 views
InPlaceActivate on ATL control not called until mouse event
I have an ActiveX control written in C++ that I created with VS2008 and ATL. For the most part, it is a pretty standard (not modified much from the original template) control, except that instead of …
1
vote
1answer
37 views
Best method of calling managed code(c#) from unmanaged C++
Hello,
We have developed a s/w architecture consisting of set of objects developed in C#. They make extensive use of events to notify the client of changes in status, etc.
The intention …
1
vote
0answers
25 views
Ituneslib API with itunes 9.0 compatibility issue
Ituneslib api stopped working with itunes 9.0. (exception in first interaction)
Is there an alternative API ? has anyone found a solution for it ?
It works perfectly in several computers with itunes …
2
votes
4answers
50 views
Writing to stdout from within a Microsoft VBA macro
I'm using Python (and the Win32 extensions) to execute macros in an Excel spreadsheet via the COM interface, as shown below:
import win32com.client
o = win32com.client.Dispatch("Excel.Application")
…
0
votes
1answer
35 views
How can I insert a footer in word?
I'm using this to open an RTF in Word and save it as a PDF:
Object oMissing = System.Reflection.Missing.Value; //null for VB
Object oTrue = true;
…
0
votes
5answers
88 views
Problem with storing COM pointers in global singleton object
Background
The application I am working with has several COM DLLs.
One of the COM DLLs has a global singleton object, which stores pointers to COM interfaces in other DLLs. Because it is a global …
1
vote
0answers
8 views
Can I force my COM object to use DllSurrogate?
See this question and this question.
It turns out that to load a COM class into a surrogate process, you must not specify any of the CLSCTX_INPROC flags when calling CoCreateInstance.
So: how do I …
1
vote
2answers
17 views
Why is COM ignoring my DllSurrogate entry?
I'm aware of this question, but I've followed the steps listed there and I'm still stumped.
I've got a class, registered as follows (this is an RGS file):
HKCR
{
NoRemove CLSID
{
…
