Click here to Skip to main content
15,881,089 members
Articles / Desktop Programming / Windows Forms

File Association in VB.NET

Rate me:
Please Sign up or sign in to vote.
4.06/5 (39 votes)
11 Aug 2010CDDL4 min read 354.3K   6.4K   131   76
Easily associate your programs with file types (.jpg, .html, .mp3) with just 2 lines of Visual Basic code
Screenshot - VBFileAssociation1.gif

Ever wanted to have your application open when the user opens a certain type of file? This is accomplished fairly easily by editing just a couple of registry keys.

How are Programs Associated?

The registry stores all the file type-app associations. Click on the Start Menu > Run > Type in 'regedit' > Ok. Now expand the HKEY_CLASSES_ROOT node. At the top of the window are all the extensions that your computer recognizes. Scroll down to .txt and click on it. Now look at the default value, it probably is 'txtfile'. Scrolling down the tree on the left, find the txtfile node. This contains all the information about any extensions that have their default value set to txtfile. Right now, we're just interested in opening the file, so open Shell > Open > Command. If your .txt files open with Notepad, then the default value should be "%SystemRoot%\system32\NOTEPAD.EXE %1".
%SystemRoot% is pretty self-explanatory, it's replaced by the folder that contains system32, which contains NOTEPAD.EXE.
%1 is a command-line argument to pass the program when a txtfile is opened. %1 is replaced by the file's location.

Step 1: Running Your Program When a .hello File is Opened

The first step is to get your application to open when a chosen extension (like .mp3) is double clicked in Windows Explorer. For this article, we'll use a file extension that shouldn't exist: .hello. To use this file type, create a new project called 'Hello World'. The idea in the included project article is this: a .hello file contains (in plain text) an adjective. When one is opened, a message box will pop-up and say, "Hello, (file contents) World". If you open the application manually, it will associate itself with the .hello extension. Therefore, before .hello files will be opened with the demo program by default, you must run it on its own.

Now we have to edit the registry just like you saw with the .txt extension. Use the following code to do this:

VB.NET
My.Computer.Registry.ClassesRoot.CreateSubKey(".hello").SetValue_
	("", "Hello", Microsoft.Win32.RegistryValueKind.String)
My.Computer.Registry.ClassesRoot.CreateSubKey_
	("Hello\shell\open\command").SetValue("", Application.ExecutablePath & _
	" ""%l"" ", Microsoft.Win32.RegistryValueKind.String)

What does all this do? If you don't understand My.Computer.Registry, here's a link to it on MSDN, or look below:

Code What it does
CreateSubKey(".hello") Creates a registry key in ClassesRoot for the .hello extension. Note that you must include the beginning period.
.SetValue("", "Hello"...
  1. "" (Or Nothing) sets the default value of the key.
  2. "Hello" is like the "txtfile" we saw earlier, it tells which registry key contains the information about the .hello extension.
CreateSubKey("Hello" & _ "\shell\open\command") This creates the "Hello" sub-key and the "store\open\command" subkey that is needed to store the path to the application that will open this file type.
.SetValue("", Application.ExecutablePath & _ " ""%l"" ",...
  1. Again, "" tells the application to set the key's default value.
  2. Application.ExecutablePath tells the code to associate the currently running executable with this file type.
  3. " ""%1"" " passes the opened file's location to your program. The quotes around it are optional, but if you have more than one argument, you must put them around each.

Now run your application once. It will edit the registry. Your program is now associated with the .hello file!

Now let's say you want to create a file association for .txt in your program. You create the file association, but it still opens in Notepad. What's going on? There is another value that needs to be deleted located here:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt

The value name is 'Progid'. This will consist of a string value of the default program to open this filetype. If this value is present, you will not be able to associate anything with this particular filetype. You must delete the 'Progid' value in order for the association to work.

Thanks, Computer Masster!

Now to test it out. Open Notepad, type in an adjective, and save it as a .hello file (Make sure you don't accidentally save it as a .hello.txt file). Open the file in Windows Explorer. Your program will run! But nothing happens...

Step 2: Reading the File Contents

When the registry is set correctly and a file is opened in Windows Explorer, the file's path is passed as a command-line argument (if you think of an application as a function, then these are the parameters). To retrieve the arguments, you use My.Application.CommandlineArgs. It returns a ReadOnlyCollection(Of String). You can use My.Application.CommandlineArgs(0) to retrieve the file path.

Now, we have to display the message. More code for the Load event:

VB.NET
msgbox("Hello, " & My.Computer.FileSystem.ReadAllText_
  (My.Application.CommandlineArgs(0)) & " World!")

Screenshot - VBFileAssociation2.gif

History

DateChange
4/29/07Article Submitted
4/30/07
  1. Fixed up article so it fits on one page
  2. Updated demo project
5/8/07
  1. Explained My.Application.CommandLineArgs
6/3/07 Added this tip
6/8/07Fixed problems in the DLL
6/26/07Changed the wordings in some phrases and fixed some errors in the examples
6/29/07
  1. Fixed links
  2. No more sidescrolling!
6/19/09Removed buggy library
8/10/10
  • Rewrote the sample applications so that they do not rely on the removed library and are fully open source
  • Updated article

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow to check if associated app is already running and the app is configured as single instance only? Pin
Boy Balantoy30-Jan-17 16:21
Boy Balantoy30-Jan-17 16:21 
PraiseMy Vote of 1000000! Pin
Boy Balantoy30-Jan-17 14:01
Boy Balantoy30-Jan-17 14:01 
QuestionHow to get type of file using vb.net with OpenDialog..? Pin
Member 1060917817-Mar-15 22:39
Member 1060917817-Mar-15 22:39 
SuggestionRe: How to get type of file using vb.net with OpenDialog..? Pin
Boy Balantoy30-Jan-17 14:12
Boy Balantoy30-Jan-17 14:12 
QuestionPermissions Nightmare Pin
jemlay12-Dec-14 6:24
jemlay12-Dec-14 6:24 
QuestionMy.Computer.FileSystem.ReadAllText(My.Application.CommandLineArgs(0)) Pin
Amr Moussa27-Jul-13 17:44
Amr Moussa27-Jul-13 17:44 
AnswerRe: My.Computer.FileSystem.ReadAllText(My.Application.CommandLineArgs(0)) Pin
Amr Moussa27-Jul-13 18:55
Amr Moussa27-Jul-13 18:55 
QuestionHelp me Pin
Mg Danger25-Jun-13 16:56
Mg Danger25-Jun-13 16:56 
QuestionExcellent!VOTE OF 5000! Pin
Globin18-Dec-12 6:22
Globin18-Dec-12 6:22 
GeneralThanks! Pin
Janyk Steenbeek26-Oct-12 2:51
Janyk Steenbeek26-Oct-12 2:51 
GeneralBrilliant Pin
ron_x27-Sep-12 2:14
ron_x27-Sep-12 2:14 
GeneralMy vote of 5 Pin
Gun Gun Febrianza12-Aug-12 5:55
Gun Gun Febrianza12-Aug-12 5:55 
QuestionCool but i want to open an excisting file type with my program Pin
Korlando9-Jun-12 4:10
Korlando9-Jun-12 4:10 
AnswerRe: Cool but i want to open an excisting file type with my program Pin
Globin18-Dec-12 6:40
Globin18-Dec-12 6:40 
QuestionSome additional questions... Pin
Member 81172656-Feb-12 12:19
Member 81172656-Feb-12 12:19 
GeneralMy vote of 5 Pin
Nasenbaaer30-Jan-12 6:04
Nasenbaaer30-Jan-12 6:04 
GeneralMy vote of 5 Pin
aaroncampf1-Jul-11 7:33
aaroncampf1-Jul-11 7:33 
GeneralMy vote of 4 Pin
Ștefan Gabriel Muscalu22-Jun-11 21:26
Ștefan Gabriel Muscalu22-Jun-11 21:26 
QuestionCool But How do i set the icon for the file that opens? Pin
XtanX16-Oct-10 2:48
XtanX16-Oct-10 2:48 
AnswerRe: Cool But How do i set the icon for the file that opens? Pin
IVAN PADRON14-Jun-11 8:58
IVAN PADRON14-Jun-11 8:58 
AnswerRe: Cool But How do i set the icon for the file that opens? Pin
Amr Moussa27-Jul-13 19:02
Amr Moussa27-Jul-13 19:02 
GeneralSuggestion for next article. Pin
Jalapeno Bob12-Aug-10 7:59
professionalJalapeno Bob12-Aug-10 7:59 
Questionadding .dll Pin
Emmery Chrisco10-Aug-10 10:31
Emmery Chrisco10-Aug-10 10:31 
AnswerRe: adding .dll [modified] Pin
Nick Rioux10-Aug-10 14:10
Nick Rioux10-Aug-10 14:10 
GeneralRe: adding .dll Pin
Emmery Chrisco10-Aug-10 17:01
Emmery Chrisco10-Aug-10 17:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.