Questions tagged [progid]
29 questions
1
vote
2 answers
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 ActiveXComponent it needs to be passed a ProgID or CLSID. …
user276557
1
vote
2 answers
What happens if I violate the requirements imposed on ProgIDs?
This MSDN article states that any ProgID must meet several formal requirements, length restriction included. However nothing is said about what happens if those are violated.
I found several places in our codebase where ProgIDs are longer than 39…

sharptooth
- 167,383
- 100
- 513
- 979
0
votes
0 answers
Error using actxserver(progid) line 93. Invalid progid 'Ansoft.ElectronicsDesktop' in Windows (x64)
Hi I am doing my MAster Thesis ,
For me as a Window user with all softwares (x64 bit), I can see the progID in the registry of my system but then also MATLAB (R2021a/R2022b) COM object is not detecting. What could be the possible cause for…
0
votes
0 answers
Problem with Jacob.jar - com.jacob.com.ComFailException: Can't get object clsid from progid
I have a development in Java using DB Postgres, and we have running a serial of applications to create digital invoices according to the local gov tax department. When the program calls to jacob to negotiate, we have this exception and the program…

Sergio Cordovez
- 1
- 1
0
votes
1 answer
Enumerate the methods and properties exposed by a COM object given the ProgID
Following this question, I want to list all the methods and properties exposed by a Component Object Model (COM) object, given its ProgID. From here I can list all the COM object ProgIDs available from the registry:
dir …

Foad S. Farimani
- 12,396
- 15
- 78
- 193
0
votes
0 answers
What happens if the ProgId of my com object is not unique?
Here's my class definition:
[ProgId("MyProject.MyClass")]
[ClassInterface(ClassInterfaceType.None)]
[Guid("...")]
[ComVisible(true)]
public class MyClass : IMyClass
{
...
}
What happens if a com client tries to create my object by the ProgId and…

conan.ak
- 1
- 2
0
votes
2 answers
filter: progid:DXImageTransform fails W3C CSS validation
I am using the following three lines in CSS to enable smooth transitions between "slides", but line #1 fails W3C CSS validation.
filter: progid:DXImageTransform.Microsoft.alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
Is there a way to…

Carl J.
- 71
- 3
- 4
0
votes
1 answer
Why is no ProgId generated for these ATL Simple Objects?
I have an ATL DLL with a bunch of ATL Simple Objects (= COM objects), all wizard-generated.
The IDL file contains lots of interfaces and a library section such as this:
[
object,
uuid(00000000-0000-0000-0000-000000000000),
dual,
…

Felix Dombek
- 13,664
- 17
- 79
- 131
0
votes
0 answers
What is the ProgID when a associating a file extension?
picture from the setting box in projekt properties -> publish (sorry for german)
I am trying to get a file extension associated with my programm. What is the ProgID? Is the extension associated once the programm is started or does i need to be…

Mr_Grennn7
- 109
- 1
- 12
0
votes
0 answers
Progid not getting registered in the registry when the C++ class is built in VS2013
I created a new C++ class and added the interface and class information in the idl file.
The project is built successfully in VS2013.
However, when I search in the registry for the ClassId/ProgID, it does not find it.
Could anyone please tell what…

Vishal Khemani
- 171
- 2
- 13
0
votes
2 answers
get progid of a running process
Is it possible to get the progID of a running process? Using C#?

Anirudh Goel
- 4,571
- 19
- 79
- 109
0
votes
1 answer
How are the GetObject progids maintained?
Windows Shell Scripting (vbs) has the following method:
object.GetObject(strPathname [,strProgID], [strPrefix])
Now suppose I have the following code:
set myval = getObject("myObjectRef:myObjectArgs")
This works on one machine - and not on…

hawkeye
- 34,745
- 30
- 150
- 304
-1
votes
1 answer
Cannot run any batch file unless ran as administrator
When I double any batch file (even something as simple as "echo test") in the explorer or from anywhere else (windows 10 ONLY in my user account). I get this error message:
The filename, directory name, or volume label syntax is incorrect.
If I…

Eea Manco
- 11
- 1
- 4
-1
votes
1 answer
Get CLSID from ProgID
I am working on small program using com component on windows 10 1909, but I've got a problem with com function CLSIDFromProgID.
The c++ code is as follows.
CoInitialize(NULL);
HRESULT hr = NULL;
CLSID clsid;
LPOLESTR pProgID =…

FlinRider
- 1
- 1