Tagged Questions
14
votes
4answers
2k views
ClickOnce app does not start through Process.Start(“x.abc”) with *.abc associated to ClickOnce app
I have successfully developed and deployed a ClickOnce application which registers an associated file extension, for instance *.abc. When I click on a file named x.abc or if I type x.abc from the ...
5
votes
3answers
250 views
How do I add my application in the Default Programs list of Windows Vista/7?
So many programs feature a list of possible extensions and protocols under the "Default Programs" control panel applet. "Set Default PRograms", more precisely. (Vista & 7)
I wish to add my ...
4
votes
2answers
338 views
How can I programmatically check file that a file association exists before attempting to Process.Start() it?
My .Net Windows Forms application generates a PDF report, which I want to show to the user.
Instead of just assuming the client PC has a PDF viewer installed and blindly throwing the PDF at the ...
3
votes
2answers
789 views
Is there a Windows API to modify file type associations for an extension?
I'm looking for a way to programatically tweak the particulars of a file association on a Windows system. For example, the "Application User to Perform this Action" setting for the "Open" action for a ...
1
vote
3answers
226 views
How to execute an event of already launched application with file association?
After playing around with a new Windows Form project, I discovered that when you associate a file type with an executable in Windows, you can find the file path of the file that launched the ...
1
vote
1answer
129 views
Setting File Associations with ClickOnce
When setting up a File Association for my App with ClickOnce I run into an issue. I'm using the Properties > Publish > Options > File Associations method. The issue is that when I try to set the ...
1
vote
1answer
652 views
What is the best .net alternative to dde for file associations?
I have an MDI Windows Forms application (.net 2008) that allows the user to associate various file types with the application. I currently do this with a registry entry something like this, that ...
1
vote
1answer
984 views
How to change file association without UAC confirmation?
When I was working with file association in a .NET application I hadn't had found a way to set it without UAC popping up a confirmation dialog.
Today, when I opened uTorrent and looked up for file ...
0
votes
2answers
56 views
How can I associate a specific file extension with my application?
How can I associate a specific extension with my .NET application so that the user can open a file with that extension by just double-clicking it?
I have seen some questions and some answers on these ...
0
votes
2answers
395 views
How do I set up “File Associations” in Visual Studio?
In Project Properties under Publishing in Options there is a tab called "File Associations". I have entered there .mpg|MyDesc|MyDescID|myIco.ico. I have hoped that the mpg ext will be automatically ...