Not completely sure, but I would think that the information is being passed to your application as a command-line parameter. Find your "Main" method that acts as the entry point to your C# app. It probably looks like this:
static
void Main()
because VS.NET IDE doesn't include the args parameter in your Main method for WinForms by default for some reason. All you have to do is make it look like this:
static
void Main(string[] args)
And you should be able to get command-line arguments that are hopefully being passed in.
Damon Armstrong, Technology Consultant
[
Blog] [
Articles]