FZ_PanDAForm.LoadBackupData

Performs a system and scene group data load processing

Public Shared Function LoadBackupData( _
   ByVal fileName As String _
) As Integer

Parameters
fileName
Load source file name
The load source file name must be specified as an absolute path.
Input

Return Value
Returns 0 when loading a system and scene group data succeeded.
Otherwise returns a non-zero value.

Description
Loads the system data and the scene group 0 data from the specified file.
* When you execute this method, basically disable a measurement trigger (execute refMeasureStop ) before the execution.
After performed a system and scene group data load processing, enable the measurement trigger (execute refMeasureStart ).

Example
   Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

       ' Disables a measurement trigger
       MeasureStop()

       ' Loads data to the system + scene group 0
       LoadBackupData(GetCoreRAPath()+"sysscngrp.bkd")

       ' Enables a measurement trigger
       MeasureStart()

  End Sub