Displaying the application name in context menu
-
Hi all, I am developing a c# windows application and creating a setup of it. When i install that application i want a feature like - when i right click on a file i will get a context menu in which i want to display the application name with the path. So that when i click on the application some operation will be done on that file. All this things i want to do it in c#. Please can any one tell me how can i do it. Thanks in advance.
-
Hi all, I am developing a c# windows application and creating a setup of it. When i install that application i want a feature like - when i right click on a file i will get a context menu in which i want to display the application name with the path. So that when i click on the application some operation will be done on that file. All this things i want to do it in c#. Please can any one tell me how can i do it. Thanks in advance.
Look for "file type association". It is done in the registry (you can add some registry keys by your setup project). Another possibility is to start the application immediately after install and have it creating the keys, see System File Association[^].
-
Hi all, I am developing a c# windows application and creating a setup of it. When i install that application i want a feature like - when i right click on a file i will get a context menu in which i want to display the application name with the path. So that when i click on the application some operation will be done on that file. All this things i want to do it in c#. Please can any one tell me how can i do it. Thanks in advance.