Problem associating file extension with application
I have done the necessary steps to create all subkeys in the HKEY_Classes_Root:
- HKEY_CLASSES_ROOT
- .myp
- (Default) = MyProgram.1
- MyProgram.1
- (Default) = MyProgram Application
- Shell
- (Default) = doit
- open
- command
- (Default) = C:\MyDir\MyProgram.exe "%1"
- DefaultIcon
- (Default) = C:\MyDir\MyProgram.exe,0
"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\" & EXT & "\Application", FileName
"HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\" & EXT & "\OpenWithList\a", FileName
To be more clear my application is using the steps done in the code snippethere
But still my icon is not show in Explorer. If you have any idea why please let me know or if there is another code snippet as I am writting my code on C#.
Thanks in advance :)

