FZ_PanDAForm.SyncData

Syncs setting data between CoreRAs

Public Shared Function SyncData( _
    ByVal srcCoreRANo As Integer _
    ByVal destCoreRANo As Integer _
) As Integer

Parameters
srcCoreRANo
Source CoreRA number
Input
destCoreRANo
Destination CoreRA number
Input

Return Value
Returns 0 when the setting data between CoreRAs is successfully synced.
Otherwise returns a non-zero value.

Description
When two or more CoreRA is started, the measurement processing cannot be executed while transmitting data by the one that data can be generally transmitted between the processes of the CoreRA.

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

        ' Syncs setting data between CoreRAs
        SyncData(0, 1)

    End Sub