vote up 0 vote down star

Possible Duplicate:
How to associate a file extension to the current executable in C#

When you double-click on a Word document, Word is automatically run and the document is loaded.

What steps are needed to do the same thing with my C# application?

In other words, assume my application uses ".XYZ" data files. I would like to know how to tell Windows to start my application when a .XYZ data file is double clicked.

Thankyou for any help

flag
Duplicate thread - stackoverflow.com/questions/69761/… – adatapost Aug 25 at 10:08

closed as exact duplicate by Binary Worrier, Marc Gravell Aug 25 at 10:14

5 Answers

vote up 1 vote down

See this

http://stackoverflow.com/questions/69761/how-to-associate-a-file-extension-to-the-current-executable-in-c

link|flag
Comments (or the "close" option when available) are more appropriate for cross-referencing existing answers. – Marc Gravell Aug 25 at 10:18
vote up 0 vote down

If you have to do this operation one time, you can select you .XYZ data file form Explorer and after a click of right mouse select "Open with..." and choose your application (check the flag "Open always with this application". Your application must accept the data file by parameter.

link|flag
vote up 0 vote down

you need to associate the extension with your application in windows. after that if the user click the file it will automatically open your application.

How to associate a file extension to the current executable in C#

also you can do it manually from windows folder option.

link|flag
vote up 0 vote down

You need to create a file association. Here is an example with C# source code.

link|flag
vote up 0 vote down

You have to register the extension and application to handle it with in Windows.

Presumably you want to have your application do this itself, here's how:

http://www.codeproject.com/KB/dotnet/System_File_Association.aspx

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.