Gerade Geldenhuys
Gerade Geldenhuys

Reputation: 139

Without using openfiledialog

I want to send files to my application without using openfiledialog....lost??

OK.

You select a file in my documents, in the SendTo menu, I want my application to be an option, when you select my application, the file that was selected should be add to the list box in my application, the same way it would do if I was using openfiledialog. But I want my application to run in the background, which means I don't want to use openfiledialog.

Please help??

Using .NET 3.5

Upvotes: 3

Views: 86

Answers (1)

Glenn Ferrie
Glenn Ferrie

Reputation: 10390

I believe this is what you are looking for. You do not need to write any code to get your app in the 'sendTo' menu. Just following the instructions here:

HowToGeek - Customize 'Send To' menu

once the files / references are being passed to your app, you will have to write code to handle those command line args

Upvotes: 1

Related Questions