FZ_PanDAForm.SetCurrentCoreRA

Sets current operating CoreRA object

Public Shared Function SetCurrentCoreRA( _
    ByVal coreRANo As Integer _
) As Integer

Parameters
coreRANo
CoreRA number
Input

Return Value
Returns 0 when the processing unit data is successfully set.
Otherwise returns a non-zero value.

Description
That is, it makes it to as follows though the definition which window comes to the front when "Line" button is pushed was vague so far.
- The main window in process that started in process of UI corresponding to specified line at the end,
- When the process that started at the end is ended, the process of the one UI that started ahead comes to the front.
It becomes the following if it follows and it writes in the menu of FZ3 by the type if it writes in the form of the universal definition though it is confusing.
- Only the main frame is display, main frame.
- Open the flow edit frame, flow edit frame.
- Open the processing unit setting frame in the flow edit frame, the processing unit setting frame.
- Close the processing unit setting frame, returns flow edit frame.
- Close the flow edit frame, returns main frame.
...
The display between lines cannot be correctly switched when mounting in shape without the window recognized as "Main window", and warn those who mount, please when you mount each process of UI.

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

        ' Sets current operating CoreRA object
        SetCurrentCoreRA(0)

    End Sub