Click here to Skip to main content
15,949,741 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I would like to add my app to the context menu on Windows 7 for all kind of files only, but not for the folder. How to do so ?
I just need the file path. I've started with a module to get the args

VB
Module modMain

 Public Sub Main()
    If My.Application.CommandLineArgs.Count = 0 Then Exit Sub
    frmMain.display(My.Application.CommandLineArgs)
    frmMain.ShowDialog()
 End Sub

End Module
Posted

1 solution

 
Share this answer
 
Comments
Sourav Ghosh1989 3-May-12 21:06pm    
I'm trying to integrate my app in the context menu, but you have not mentioned anything about it

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900