Published in: VB.NET
Retrieve application version at Form_Load
'set version number label Dim ver As String = Application.ProductVersion lblVersion.Text = "v" & ver.Substring(0, ver.Length-2) 'set title on application Me.Text = My.Application.Info.ProductName & " " & lblVersion.Text
You need to login to post a comment.
