|
I have a VB.NET application. I have a proprietary file extension that is associated with my application. I have registered the file extension in windows. I know how to register it. When a user opens the file from the shell (explorer) My appliation opens, but nothing happens.
In file associations the open command looks like this "C:\Program Files\foldername\Unplugged.exe" "%1"
I have learned that the file name of what was opened is passed as the %1
How do I get that value(%1) from the shell. I have looked around everywhere and all I can find is how I register the file name programatically. I can do that I just want to know what file was double clicked.
Any help will be greatly appreciated.
Thanks. |