Do you mean you have a ClickOnce application deployed via the Publish screen in Visual Studio, and you want to run the program from another application?
To do that, the best thing to do is look on the Start Menu for the shortcut and call *that*.
shortcutName =string.Concat(Environment.GetFolderPath(Environment.SpecialFolder.Programs),
"\\", PublisherName, "\\", ProductName, ".appref-ms");
process.Start(shortcutName);
where PublisherName and ProductName are those specified in the Options dialog in the Publish tab of the application you want to call.
If it's online-only, you'll have to look on the desktop instead for the shortcut.
desktopPath =string.Concat(Environment.GetFolderPath(Environment.SpecialFolder.Desktop),
"\\", ProductName , ".appref-ms");
RobinDotNet
Click here to visit my ClickOnce blog!