FZ_PanDAForm.SaveBackupData

Performs a system and scene group data save processing

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

Parameters
fileName
Save destination file name
The save file name must be specified as an absolute path.
Input

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

Description
Saves a system data and scene group 0 data in a file.
If the existing file is specified as the save destination file name, the file is overwritten.

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

       ' Saves the system + scene group 0 data
       SaveSceneGroup(0, GetCoreRAPath()+"sysscngrp.bkd")

  End Sub