2008年8月2日 星期六

如何在表單載入時顯示程式的版本編號 (Code to display the version info of your program)

 
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        ' 如何在表單載入時顯示程式的版本編號
        ' Code to display the version info of your program
        '
        Me.Text = Me.Text & " - " & Application.ProductVersion
    End Sub ' Form1_Load
 

沒有留言: