FZ_PanDAForm.GetApplicationVersion

Gets information about the application software version

Public Shared Function GetApplicationVersion( _
   ByVal kind As Integer _
) As String

Parameters
kind
Information type to be gotten
0: Type of controller
1: Version information
2: Creation date
Input

Return Value
Returns a string that stores the version information.
If failed to get or not setting, returns "".

Description
Gets the version information about the specified information type.

Example
   Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

       Dim versionInfo As String

       ' Gets the controller model
       versionInfo = GetApplicationVersion(0)

   End Sub