Internet Explorer running an application by file association
-
I need to start a C# .Net application (actually a windows form app) when Internet Explorer received a specific file, and that application needs to read the file content. In other words, IE receives a file containing data with an extension of .vdl and I set up .vdl file association to open my application readvdl.exe.How does my application read the content of the file received and passed on by Internet Explorer?
-
I need to start a C# .Net application (actually a windows form app) when Internet Explorer received a specific file, and that application needs to read the file content. In other words, IE receives a file containing data with an extension of .vdl and I set up .vdl file association to open my application readvdl.exe.How does my application read the content of the file received and passed on by Internet Explorer?
FileStream with path passed in
string[] args
I would imagine.Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia) -
FileStream with path passed in
string[] args
I would imagine.Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)Thank you, I know it was a simple thing but I didn't really know how it worked.