Component Object Model (COM) is a component technology from Microsoft, featuring remoting, language independence and interface-based programming. For questions about the COM serial port, you should use the [serial-port] tag instead.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

VB.NET exe that talks to out-of-process COM on activate event bombs when external script AppActivates it

I wrote a VB.NET Windows Forms app that requests a string from an out-of-process COM object every time the activate event fires. My form has two tabs, so I need to programmatically flip to the correct ...
0
votes
1answer
34 views

Convert double[,] to Variant*

In my application Im trying to call a function of ATL COM class from my WPF application. ATL COM class's fucntion's parameters are like this. [id(5)] HRESULT GetFormationZPoints([in] BSTR sLyrName, ...
-1
votes
2answers
20 views

substitute of COM/ATL in C++

Is microsoft Component Object Model really outdated ? I am working in a project where some c++ code is writtern in COM/ATL and rest are in Qt. In order to fix defects and use the legacy libraries, I ...
2
votes
1answer
62 views

What is F# equivalent of C# “public event ”

I'm trying to translate to F# code from this article http://www.codeproject.com/Articles/35532/C-COM-Object-for-Use-In-JavaScript-HTML-Including I've stumbled on this lines: public delegate void ...
0
votes
1answer
15 views

REGDB_E_CLASSNOTREG with both client and server 32-bit, registry looks OK

I registered my 32-bit in-process component (just the CLSID\{clsid}, MyComponent.1 and MyComponent keys, and their subkeys) in HKEY_CURRENT_USER\Software\Classes with the WOW64 version of regsvr32. ...
0
votes
0answers
6 views

Unmanaged C++ regfree COM application: problems when launching from IDE with parent directory in path (VS2010)

I have an application A and a DLL B, both unmanaged C++ built in VS2010. DLL B is a COM server. A uses both implicit C++ linkage to B for some methods and classes but it is also accessing coclasses ...
0
votes
0answers
13 views

How to create modem gateway by SMSLib using USB?

I want to create a modem gateway by SMSLib using a USB connection, i know that there is no a direct way to do that as SMSLib supports only the ip and serial connections : SerialModemGateway gateway = ...
1
vote
3answers
47 views

Am I completely negating the benefit of Microsoft::WRL::ComPtr by passing it around as a reference (&)?

I've been tossing around ComPtrs in my code because I need them here and there but I've been doing it like so: HRESULT Material::Initialize(aiMaterial* pMaterial, ...
0
votes
0answers
15 views

make elements in outlook read-only via C++ addon

the main idea is to make read-only elements (contacts) in outlook by my own rules... I use ItemEvents_10 HRESULT Write ( VARIANT_BOOL * Cancel ) with IDispEventSimpleImpl after cancellation we have ...
1
vote
0answers
12 views

windows 8 XmlDocument.LoadFromUriAsync HRESULT E_FAIL has been returned from a call to a COM component

Suddenly all the xmldocment.LoadFromUriAsync(new uri("url")); gave me this exception "HRESULT E_FAIL has been returned from a call to a COM component." in all my windows 8 store app aplications, even ...
0
votes
0answers
23 views

C++ COM CoCreateInstace() returns -858993460

I have a third party .NET dll which I want to expose to a native C++ dll, so I wrote a wrapper dll in C#; But in the native C++ dll, every time when it excutes to CoCreateInstance(), it returns this ...
-1
votes
0answers
13 views

Session moniker does not work in Windows 2008 R2

I have an application which was written for communicating between two or more session in windows 2008 R2. I have used session moniker, for COM oriented communication. But it is working in windows 7. ...
0
votes
1answer
12 views

Merge two SAFEARRAY's - SafeArrayPutElement memory access violation

I am getting some memory access violation while execute the following code: UINT cDims = 1; SAFEARRAYBOUND rgsabound[1]; long lLbound = 0; long lUbound = 0; rgsabound[0].lLbound = 0; ...
1
vote
0answers
18 views

create ITypeInfo Object without tlb file

I want to create a ITypeInfo Object Without tlb file. class CExternalHelperM:public IDispatch,public IDocHostUIHandler { public: CExternalHelperM(); virtual ~CExternalHelperM(); BEGIN_JSOBJECT_MAP() ...
0
votes
1answer
40 views

Equivalent of _variant_t in Qt

I am trying to translate a Visual-C++ code to Qt. Is there an equivalent of _variant_t? The code is: // // Get safarray containing all vectors from multibuffer // _variant_t ...
0
votes
1answer
53 views

CoCreateInstance() -858993460 (in comip.h) C++

I will spend a little time explaining my project stucture: There are three dlls: mclController.dll - a third party dll written in C# to control the hardware.. MCLWrapper.dll - I wrote this ll in C# ...
0
votes
2answers
34 views

MS Office COM Interop and thread safety with multiple UAC Users

I'm using c# .NET to invoke MS com using the MSOFFICE com interop DLLs. I know that Office com interops are not thread safe. However, would it be thread safe for a different user? I don't know ...
0
votes
0answers
6 views

Release object in Button_Click

Private Sub Button12_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button12.Click Dim excel As Microsoft.Office.Interop.Excel.Application Dim wb As ...
0
votes
1answer
20 views

Attaching file to mail with outlook

I've got a file (a btmap called secretimage) that I want to attach to a mail when the user hits a button. I'ld like to use Outlook for this. So this is what I've done: using Outlook = ...
0
votes
1answer
21 views

class not registered error returned from CoGetClassObject

I created a COM dll using vs2008 ATL wizard. I created a new interface and implemented two methods. The default functionality is handled by the wizard I want to access this COM component from another ...
0
votes
1answer
30 views

C# com reference publish crash

I've never used C# before writing this app, and I loathe Visual Studio, so please bear with me if I am just being daft. I've created a nice little utility that automates a number of painful processes ...
0
votes
1answer
13 views

Is it possible to set the position of an Attachment in a MailItem?

I'm trying to position an attachment in an RTF mail of Outlook 2007 created via COM: using Outlook = Microsoft.Office.Interop.Outlook; // ... private static void CreateMailWithAttachment() { ...
-1
votes
1answer
61 views

How to properly convert and use native COM types in a ATL-based server?

I have to write a COM server DLL (using ATL) that is called by the plugin interface of an old (closed-source) VB6 application and would like to avoid possible leaks (of course)! The interface ...
0
votes
2answers
50 views

Anyway to call CoInitialize() before an initialization list?

Here is my C++ code of a constructor of ThorDetectorSwitch.cpp file: ThorDetectorSwitch::ThorDetectorSwitch() : _mcSwitch(__uuidof(MCLControlClass)) { _A = WstringToBSTR(L"A"); _B = ...
3
votes
0answers
95 views

CoInitialize in Delphi DataSnap server application

I have an XE2 DataSnap server (Windows service) which uses a 3rd party out-of-process COM component within it's methods. Being COM, I understand it requires the CoInitializeEx and CoUninitialize ...
0
votes
1answer
38 views

Read / write a file in a shell namespace extension using shell APIs

I've used SHGetDesktopFolder() to get a PIDL and then walked down it's contents using IShellFolder. I now have a particular PIDL referencing a filesystem location, and I can use BindToStorage and ...
0
votes
1answer
51 views

C# COM string is corrupted in C++ BSTR

I wrote a C# COM object which I call from my native C++ code. The C# COM has a few functions and events. I registered in the C++ to the events, and I called the C# object. At some point the event is ...
0
votes
1answer
20 views

Using DAO from 64 bits application?

I have a 64 bits application from which I try to access the Access DAO API. I only have Access 32 bits installed on my computer. Compiling with the PIA referenced in 64 bits yields the following ...
0
votes
1answer
15 views

How can I find the binary which defines a COM object or interface with a given GUID?

(Note: Names and GUID have been changed from original values) While debugging an application, I found that a likely culprit for a bug I had was in a library my application was linking with, in the ...
0
votes
0answers
13 views

How to get around ActiveX requirement to Interact with Desktop

I have a Windows Service that attempts to create a COM object. MOVEitAPI.clientObj mi = new clientObj(); When I run it as a Console Application it runs just fine. But when I run it as a Windows ...
0
votes
0answers
11 views

Can we include VLC Player plugin in VB6 form

I want to include vlc mediaplayer plugin in vb6 form as a COM component ? I embedded it in .NET 2010. Is it possible to embedded in vb6
0
votes
0answers
14 views

COM object (DLL) compiled in VB not accesible from python (accesible from VB)

I create dll in VB and register it into the registry for COM interoperations. It is in regedit with its ProgID - perfect. I run it from another project ( CreateObject("ProgID") ) - works - Perfect. ...
0
votes
0answers
23 views

Return values of functions in ActiveX controls

Why can functions in the main COM object of an ActiveX control return values of any VARIANT type, while functions in other ATL objects in a control must return an HRESULT error code and give their ...
0
votes
2answers
40 views

Does IDispatch::Invoke(DISPATCH_PROPERTYGET) increment the reference count on the IDispatch interface returned?

I'm currently working on an COM server (using ATL) to be used by a closed source VB application. So far everything is working but I want to ensure that no leaks are there... so my question is: Do I ...
-1
votes
1answer
27 views

How to verify if a dll is a COM component or a normal dll [closed]

Are there any ways to identify if a dll is a COM component or not ,by going through the code
0
votes
1answer
28 views

System.AccessViolationException error when accessing COM DLL written in Visual FoxPro

I have a C# WinForms .NET 3.5 application that I need to call a COM DLL written in Visual FoxPro 7. I have added the COM object to the C# project fine, and can view the objects and its members in ...
0
votes
0answers
25 views

“Invalid data has been used to update the list item. The field you are trying to update may be read only.”

I am trying to update the field in a Sharepoint Discussion board using the Client Object Model in C#. When the code reaches the clientContext.ExecuteQuery() it throws exception as: “Invalid data has ...
1
vote
1answer
28 views

VBA error loading .NET COM Visble library

So I am trying to register and use a .NET library that I have created in C#.NET and up until now I have been getting Visual Studios to "Register COM" on build. I am now trying to go through the ...
1
vote
1answer
33 views

Generating temporary PDF via .exe or .NET from PHP

In Short... I have an ASP.NET script that generates a PDF based on parameters passed to it. Firstly, I need to be able to call this script from PHP, and secondly, I need to ensure that the file is ...
0
votes
1answer
22 views

Navision automation C# COM DLL

What we did: We have created a C# class library project to talk to external webservices. When we check "register for COM interop" this DLL is automatically registered and ready for use on the PC ...
1
vote
1answer
32 views

How to get HMODULE from COM object that it reside?

I want to determine the version of DLL that implemented Microsoft Web Browser Control. The way I need to go is query DLLVERSIONINFO from implemented DLL through DllGetVersion function; because I think ...
0
votes
0answers
33 views

Counting number of pages in doc/docx from Python?

How do I count the number of pages in doc and docx document files using Python? Here is my attempt, which works with presentations (ppt, pptx) but not documents. import win32com.client from os ...
0
votes
0answers
3 views

Troubles with .ocx registrations using manifest files

I have executable with 4 ocx files. in my exe file, the manifest is embedded with dependecy section with all my .ocx files listed. for each ocx file, i have also the manifest with its own data ...
1
vote
1answer
18 views

What will happen if I update a DLL being used by a running program over a COM interface?

I have an un-managed piece of code accessing my managed DLL over a COM interface. What will happen if I update my DLL without switching off the other program? Thanks
1
vote
1answer
35 views

CoInitialize() has not been called exceptions in C++

-My problem I got CoInitialize has not been called exption. -My project structure Here is my porblem. I have a COM dll, MCLWrapper.dll developped with C#; I have a nother native C++ dll, ...
0
votes
1answer
22 views

Define a COM pointer as a private member in C++?

I am wondering how I can define a COM pointer as a private member. Here is what I want to do: in h file: MCLControlPtr _mcSwitch; //MCLControPtr is "_COM_SMARTPTR_TYPEDEF(_MCLControlClass, ...
0
votes
1answer
41 views

C++ COM [in, out] safearrays

I need to call a COM function in C++ that returns a reference to a SAFEARRAY(BSTR). According to this document, it should be: QAxObject object = new QAxObject(...); QStringList list; for(int i=0; ...
0
votes
0answers
16 views

WASAPI: Session not expiring

Ok so I've been trying to get some audio working, essentially I want to have multiple windows open under the same process playing audio and video (audio is muted on all but topmost). I am having a ...
0
votes
1answer
24 views

.NET COM Issues with VB6 in Windows 7: Event doesn't work

I have a .NET COM DLL that is used by Visual Basic 6. However, the CloseEvent is not working in Windows 7 and the following exception is throw. The VB6 process has no problem to invoke the Init ...
0
votes
0answers
20 views

How to invoke a local COM interface from a classic ASP page

This may be completely stupid, but... I have an ASP page that renders with some information queried from a database table associated to a particular computer on our network. I'd like to be able to ...

1 2 3 4 5 127