0
votes
0answers
3 views
Problem interfacing C++ POS controls with the .NET POS SDK
We're trying implement a .NET Service Object that supports a COM interface to emulate a POSPrinter but still be compatible with the older technologies.
We have our interface and …
1
vote
2answers
10 views
Copying between VARIANT and _variant_t
I'm fairly certain that I can safely do:
void funcA(VARIANT &V,_variant_t &vt)
{
vt = V;
}
But what about the other way around:
void funcB(VARIANT &V,_variant_t …
0
votes
1answer
15 views
Weird namespace addition when importing a typelib
I want to add a method accepting IStream* to my COM interface. Here's the idl excerpt:
import "oaidl.idl";
import "ocidl.idl";
import "objidl.idl";//IStream is declared in this .i …
0
votes
0answers
15 views
How ActiveX components are connecting to devices?
Hi All,
I have heard of applications that relies on ActiveX components for connecting to devices..
With the help of it, it is able to send & receive messages and perform accord …
2
votes
2answers
650 views
Should there be a difference between an empty BSTR and a NULL BSTR?
When maintaining a COM interface should an empty BSTR be treated the same way as NULL?
In other words should these two function calls produce the same result?
// Empty BSTR
CCom …
1
vote
1answer
22 views
Accessing protected memory in C# via COM interop
I am making a DLL "Plugin" for a EXE. The EXE calls a function in the DLL with an Object as a parameter, and goes from there.
It all works fine and dandy until I split it to a new …
1
vote
3answers
42 views
Does ntdll.dll come standard with windows xp and windows vista?
Hello,
Does ntdll.dll come standard with windows xp and windows vista? I know that I have it on my windows xp machine, but am not sure that is standard with every machine.
The re …
0
votes
1answer
39 views
How to build a safearray of pointers to variant
Hi,
I'm trying to use a COM component with the following method:
HRESULT _stdcall Run(
[in] SAFEARRAY(BSTR) paramNames,
[in] SAFEARRAY(VARIANT *) paramValues
);
How …
3
votes
4answers
1k views
Using Component Object Model (COM) on non-Microsoft platforms
I'm regularly running into similar situations :
I have a bunch of COM .DLLs (no IDL files) which I need to use and invoke to be able to access some foreign (non-open, non-documente …
3
votes
5answers
612 views
Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t)
Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?
…
1
vote
1answer
16 views
MFC Automation how to implement RemoveDocument OnCloseDocument
I have an MFC MDI Application and I am trying to implement Automation with it. I am trying to create a RemoveDocument. How is that done? OnCloseDocument is causing problems. Is the …
0
votes
1answer
6 views
Conflict Using Office COM Object on System with VSTO COM Add-in Installed
We have a WinForms application where we have to use COM to interface with Excel and/or PowerPoint (I know, COM objects are a major hassle, and I'd like to not have to use them at a …
0
votes
0answers
16 views
C++ and C# COM Event Performance. Help.
Hi All,
Good day.
CppApp and CsApp Event Handle Design Changed. For Industry application.
Old design.
CsApp pull event from CppApp.
There are a lot of events from CppApp. So …
0
votes
1answer
16 views
Building a Com addin for Office 2000 / Office 2007
I am struggling to find a straight forward guide to creating office addins using VSTO and VB.net.
Specifically I would like to know how to be able to create a addin/ dll which can …
0
votes
1answer
16 views
Getting COM Exception 80040154 on different machine
Hi All,
I am getting following problem, can someone help please?
I used Tlbimp utility and converted VB6 COM DLL into RCW DLL. From my Visual Studio 2008, I used "Add Reference" an …
