Dillie-O
Dillie-O

Reputation: 29725

Opening a file in my application from File Explorer

I've created my own application in VB.NET that saves its documents into a file with it's own custom extension (.eds).

Assuming that I've properly associated the file extension with my application, how do I actually handle the processing of the selected file within my application when I double click on the file in File Explorer?

Do I grab an argsc/argsv variable in my Application.Load() method or is it something else?

Upvotes: 5

Views: 1337

Answers (1)

JamesSugrue
JamesSugrue

Reputation: 15011

Try this article but short answer is My.Application.CommandLineArgs

Upvotes: 2

Related Questions