Reputation: 83
I have an application that checks for updates on launch. I want the app to pop-up a window with a changelog on ONLY the FIRST launch after it updates. Then after it is displayed it is never displayed again until the next update.
Upvotes: 1
Views: 800
Reputation: 104785
You can try:
If My.Application.Deployment.IsFirstRun Then
ShowChangeLog()
End If
Upvotes: 2