Tagged Questions

5
votes
4answers
1k views

Associate File Extension with Application

I've written a program that edits a specific filetype , and I want to give the user the option to set my application as the default editor for this filetype (since I don't want an installer) on ...
1
vote
1answer
892 views

File association - modify shell's edit verb on Vista

I'm looking to programmatically modify the edit verb for the shell on Vista. For example, I want right click edit (in explorer) to open a .cs file w/ Notepad++. How do I change a file association on ...
1
vote
2answers
1k views

How to set an application as the default program of opening a certain type of file programmatically?

There's an executable file generated from my program in MFC and I want to use it as the default program to open the .jpg files. That is to say, each time I double click a .jpg file, my program will ...
0
votes
2answers
1k views

C# - File Assocation Access to the registry key 'HKEY_CLASSES_ROOT\' is denied

I currently have a program that sets file association using the registry (Note, it's a .NET 2.0 so I have to go through the registry method). The problem is, since it's trying to write to HKCR, the ...