tags:

views:

16

answers:

1

I have my ClickOnce application set to check for updates after it runs. Is there a way to prompt the user to tell them they aren't on the current version?

A: 

Yes, there's some example code here : http://msdn.microsoft.com/en-us/library/system.deployment.application.checkforupdatecompletedeventargs.aspx

You can use the AvailableVersion property of CheckForUpdateCompletedEventArgs to learn the new version.

nos