Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
343 views

CSS with IE - is the -ms-filter required or not?

I have been learning about IE's rather ridiculous-looking requirements for shadows, gradients, etc., and I'm running into some contradictions on this point: Many sites suggest the following lines are ...
1
vote
1answer
780 views

IE filters - Shadow acts on text; Gradient+Shadow acts on box?

When I attach the following to a div, I get a box with a gradient and a box-shadow in IE: filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#D08080', EndColorStr='#E7A292') ...
1
vote
1answer
249 views

How do we use the ProgID column in the File Associations settings?

I'm deploying my application using ClickOnce. I want to register a file association but I can't manage to make it work: What should I use as ProgID in the File Associations section of the Publish ...
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
2answers
163 views

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 ...
1
vote
2answers
888 views

How to find out a COM prog id?

I'd like to access a COM library via late binding. How can I find out its progID? Type oClassType = Type.GetTypeFromProgID("THE MISSING PROGID");
0
votes
0answers
131 views

How to get the progId of a particular flash player version when 2 versions of flash are installed in the system?

I have 2 versions of flash players installled in my system. 10.2.161.23 & 10.1.102.64. When I say Type type = Type.GetTypeFromProgID("ShockwaveFlash.ShockwaveFlash"); if(type !=null) ...
0
votes
0answers
8 views

Is there an IE filter for recoloring image?

Is there a way to recolor image using IE's filters, similarly to how image can be grayscaled with IE's filter?
0
votes
1answer
350 views

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); ...
0
votes
2answers
295 views

get progid of a running process

Is it possible to get the progID of a running process? Using C#?
0
votes
1answer
77 views

how do i know that the Type for Visual Studio instance is VisualStudio.DTE.9.0

using System.Type type = System.Type.GetTypeFromProgID("VisualStudio.DTE.9.0"); i can get hold of the type for an instance of Visual Studio. My question is where was it specified that the type of ...
0
votes
1answer
248 views

Can multiple ProgIDs point to the same ClsID?

I am working on a set of what are essentially plugins, which are COM servers. Each plugin has a set of configuration data which is managed by another component, the primary key to the configuration ...