3
votes
4answers
104 views
Why should I learn COM?
Hello,
Lately I'm hearing much about COM at my work. I also learnt that COM is old. COM is deprecated. There is no future for COM. Are these true too?
I'm want to learn COM because I want to know …
0
votes
1answer
14 views
Does RTLCopyMemory work in Vista?
I've noticed that RTL*Move*Memory seems to work just fine. But when I try to use RTL*Copy*Memory I get: "Can't find DLL entry point RtlCopyMemory in kernel32". Here is my declare:
Private Declare Sub …
0
votes
1answer
48 views
How can call instance by COM?
I try to call skype instance by COM on F#.
A aim is get mood message.
test.fs
// Import skype4com Api
open SKYPE4COMLib
type SKYPE4COM =
new() = new SKYPE4COM()
let GetMood =
let aSkype …
5
votes
1answer
44 views
Who am I? How to use Microsoft Office Permission/UserPermission
Microsoft Office documents, im my case: PowerPoint presentations, can have restricted permissions. How can I find out, programmatically, which permissions my code has on a given document?
All I can …
1
vote
2answers
58 views
Integrating Qt GUI code into C#
Hello gurus,
I have to develop a plug-in for an external program using C#.
I am an experienced Qt/C++ programmer and the core of the plug-in is programmed in C++.
My first idea was to program GUI in …
0
votes
3answers
71 views
Excel Automation works very slowly!
Hello,
On my computer report is generated in about 3-4 seconds, and it was like this on all computers before. But recently on a couple of computers in the office report generating started to take …
0
votes
1answer
15 views
Can’t register COM Object
I have a dll library for Voice Server Management called VSS_WEB_Gateway.dll (from Iskratel) that fails to register via regsvr32 on my machine (Windows 7 Ultimate x86) and on a server (Windows 2003 …
0
votes
2answers
31 views
How to invoke Java methods through COM
I have a classic ASP/VBScript application that needs to call methods in a Java class. I discovered two products that apparently can do this: Java2COM and Java COM Bridge. Can you recommend one from …
1
vote
4answers
44 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();
…
1
vote
3answers
27 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 …
0
votes
3answers
39 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
48 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 …
1
vote
2answers
11 views
MsBuild Task: Register Com Component on remote/deployed-to machine?
I am currently still fiddling with our msbuild & deployment script and one of the steps is to register a (legacy) com component on the machine the code is deployed to. Is there any 'elegant' way …
0
votes
2answers
15 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 …
2
votes
2answers
28 views
C++ COM C# Mixed Mode Interoperation
I'm trying to understand my options for calling a C# library implementation from unmanaged C++.
My top level module is an unmanaged C++ COM/ATL dll. I would like to integrate functionality of an …
