Tagged Questions

A CLSID is a globally unique identifier that identifies a COM class object.

learn more… | top users | synonyms

12
votes
6answers
15k views

Windows 64-bit registry v.s. 32-bit registry

I heard on Windows x64 architecture, in order to support to run both x86 and x64 application, there is two separate/different sets of Windows registry -- one for x86 application to access and the ...
5
votes
2answers
1k views

Windows, getting CLSID for DLL?

I want to have a small app to add and remove user defined context menu entries from the registry. To make this somehow I need to get the CLSID of an arbitrary DLL so I can back up previous entries if ...
5
votes
2answers
5k views

How to find a DLL given a CLSID?

I have a situation in which a managed DLL calls some unmanaged DLL. I know the CLSID of the unmanaged DLL, is there any way to find out what binary file houses that CLSID?
3
votes
2answers
312 views

Does GDI+ have standard image encoder CLSIDs?

The GDI+ Image::Save method requires a CLSID parameter to specify the encoder to use. The documentation points to some sample code for getting the encoder associated with a particular MIME type, such ...
2
votes
1answer
132 views

Using Interop.MODI Throws 0x80040154 Exception

I am currently trying to implement the Interop.MODI.dll (From Microsoft Office) to use the Image -> Text features it should Provide. But when doing var modi = new MODI.DocumentClass(); I get: ...
2
votes
1answer
356 views

Loading ActiveX controls dynamically from CLSID

I'm parsing some third-party's software "script" which generates a GUI form based on it's contents and I want to read the script within a C# program and produce a similar output, here's an example ...
2
votes
0answers
309 views

How (and when) does COM TreatAs work?

I was looking at the registry access of vsjitdebugger.exe using Process Monitor, and I noticed that sometimes it queries the registry in the following manner (some info omited): ...
1
vote
1answer
47 views

Flash ActiveX in X64

I'm trying to move my application from x86 to x64. And most of it seems to work well however, I has a Flash Player ActiveX Control in my application, and the creation of this fails in x64 builds. ...
1
vote
1answer
80 views

Discovering registered COM components

Is there a way to determine if a registered COM component is creatable as a stand-alone component simply by parsing the information available in the registry? In particular, by the information found ...
1
vote
1answer
81 views

COM : retrieve good CLSID

I have a little problem with the CLSID. I have a (hooked) function which has in param a REFCLSID. So I want to print this param. I did: LPOLESTR pOleStr; StringFromCLSID(rclsid,&pOleStr); ...
1
vote
0answers
299 views

Throwing error on OpenFileDialog.Showdialog in c#.net

I am developing a windows application in XP machine.in my one form i have one text box for showing the selected file with path from openfiledialog box.and the other control is button to call the ...
1
vote
1answer
219 views

How to get CLSID variable name, like MSVC?

When you are debugging a program and you hover over a GUID variable, MSVC retrieves both the variable name (e.g. CLSID_FilterGraph) and the human name (e.g. Filter Graph Object). It does the second ...
1
vote
3answers
97 views

Getting notified about new COM server registration

I'm trying to find a way to identify a newly registered or unregistered (via regsvr32) COM servers, which are added to the registry (CLSID). Is there any callback function I can use? I don't really ...
1
vote
2answers
552 views

ProgID and file extension relation

I am working on a program using the JACOB project (JAva COm Bridge). There is a file to open, the entire name is passed along (ex. c:\test\test.xls). In order for JACOB to create a new ...
1
vote
1answer
1k views

Visual c# Express Edition - can't get Acrobat pdf reader to work

I'm trying to open a PDF document inside a C# application using Acrobat Inter Application Communication (IAC) in a Visual C# 2008 Express Edition project. When executing the following code I get an ...
1
vote
4answers
2k views

CLSIDFromProgID is successful but CreateInstace fails! Why?

I am trying to create an instance of a COM object. I have the class name that implements the interface and I get a CLSID by using CLSIDFromProgID(). So since I am getting a CLSID I thought everything ...
0
votes
1answer
26 views

Outlook and Registry key permission issue

I am working to fetch mail from outlook programmatically. When I was running the program from console it was running fine. But I tried to automate it through a task scheduler by giving option to "run ...
0
votes
1answer
37 views

COM CLSID CodeBase key

When .net assemblies are registered for COM Interop, there is a CodeBase key in the registry that points to the executable. My question is: is the CodeBase key something specific to .NET, or is this ...
0
votes
0answers
39 views

Detecting Toolbar through web browser - Geosurf

Is it possible to detect specific toolbars such as Geosurf (www.geosurf.com)? Here is the CLSID in case it helps. FF8EC7F3-B1EE-4678-A2A8-F8C026A7BC74
0
votes
2answers
230 views

regsvr32 doesn't create any entries in registry

I have a problem trying to register DLL. My OS is Windows 7 (x64). I do it in two different ways: 1) Using regsvr32. I get message "DllRegisterServer ... succeedeed", nevertheless I can't find my ...
0
votes
1answer
243 views

COM interface Photoshop compatibility issue

We're writing a simple .NET C# COM applicaton for Photoshop, which is designed to run on all versions from CS2 to CS5 and everything in between. The same application also exists in JavaScript form and ...
0
votes
0answers
143 views

How can i Create a ClsId and attach it to a dll by adding the

I am creating a windows control and load it on a web page. So on my webpage, i am using the 'Object' tag and loading with ClassId. I want to use ClsID for ClassId attribute. How do i create a new ...
0
votes
1answer
45 views

Create a modified own Com Object in the registry

I want to modified the Internet Explorer CLSID element in the registry: (HKEY_CLASSES_ROOT\CLSID{0002DF01-0000-0000-C000-000000000046} ) It is possible to copy this entry and replace the GUID and ...
0
votes
3answers
344 views

COM class factory error

I am getting the following error on my workstation when I am trying to work with a COM object. An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in ...
0
votes
3answers
1k views

HRESULT:0x80040154 COM object with CLSID {} is either not valid or not registered

I am using COM Object in my C# .NET 1.1 application. When the COM object is not registered on client machine, I get the exception: "COM object with CLSID {} is either not valid or not ...
0
votes
1answer
319 views

XBAP uses unmanaged c++ COM server, Side by side deployment issue

I'm facing a the following situation: I created a simple full trust XBAP application that refers to unmanaged c++ COM server (isolated). After deployment I expect that XBAP application will discover ...