FZ_FormBase.GetCoreRAPath

Gets the absolute path to FZ-CoreRA.exe

Public Shared Function GetCoreRAPath( _
) As String

Parameters
None.

Return Value
Returns a directory in which the FZ main program (FZ-CoreRA.exe) is stored.

Description
Gets a directory in which the FZ main program (FZ-CoreRA.exe) is stored.
The obtained directory is returned in the form of an absolute path.
The string of path name returned by this method ends with a "\".
For example, when "C:\FZ-NEW\FZ-XXX.300\Release_XP\FZ-CoreRA.exe" is executed to start an application software, "C:\FZ-NEW\FZ-XXX.300\Release_XP\" is returned.

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

       Dim dir As String

       ' Gets a directory in which Fz-CoreRA.exe is stored
       dir = GetCoreRAPath()

   End Sub