views:

39

answers:

2

I have a click once application that that is installed from a page, is it possible to send new arguments to it if its already open?

+1  A: 

I don't think so, except startup arguments you won't be able to communicate with it. MSDN link, look at the bottom of the page.

BennyM
A: 

Definitely not. You need an implementation of inter-process communication (Remoting, WCF, ...)

Marc Wittke