You can try the following code after you add 2 standard labels and name them "lblAHMIVersion" and "lblPublishedVersion":
Private Sub MainForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'set AHMI version info
lblAHMIVersion.Text = "v" & System.Reflection.Assembly.GetExecutingAssembly.GetName.Version.ToString()
'set published version info
If System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed Then
lblPublishedVersion.Text = "v" & System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString()
End If
End Sub
You can omit either of the labels and remove corresponding code.