vote up 1 vote down star

I have a clickonce application that is available online or offline. The program takes an argument. When online I pass the argument on the url like so "url?argument" and it works well. Offline i start a process with the startmenu link to the application.

My question is, is it possible to pass an argument to my application via this link? I guess I could somehow work out the location of the application file but is there an alternative?

flag

1 Answer

vote up 0 vote down

No, you can't pass arguments from the Start Menu shortcut. If you find a way, let me know because I've been trying to do it for a long time :).

Here's how I address the problem in my situation...

If the ActivationUri property is not null, the application was launched from a browser and passed arguments via the query string (just like you described).

If the ActivationUri is null, the application was launched from the start menu. In these cases, I get the arguments from a config file deployed with the application.

What type of information is being passed with your argument? That would be useful in order to determine how you should store your arguments (app.config, application settings, user settings, isolated storage, etc.)

Side Note
I thought I was on to something by making my application "single instance" and trying to handle the StartupNextInstance application event, but no luck. You can only get traditional command line parameters that way, not the ClickOnce query string parameters.

link|flag
I posted my workaround solution here: social.msdn.microsoft.com/Forums/en-US/… – alan Mar 18 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.