DaveyLions
DaveyLions

Reputation: 83

Displaying "Changelog" on First Launch

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

Answers (1)

tymeJV
tymeJV

Reputation: 104785

You can try:

If My.Application.Deployment.IsFirstRun Then
    ShowChangeLog()
End If

MSDN: http://msdn.microsoft.com/en-us/library/system.deployment.application.applicationdeployment.isfirstrun.aspx

Upvotes: 2

Related Questions