FZ_PanDAForm.SetSceneMaker
Sets a scene author name
Public Shared Function SetSceneMaker( _
   ByVal sceneNo As Integer, _
   ByVal sceneMaker As String _
) As Integer
 
Parameters
| sceneNo 
 | Scene number to be set 
 | Input 
 | 
| sceneMaker 
 | Scene author name string to be set 
 | Input 
 | 
Return Value
Returns 0 when setting a scene author succeeded.
Otherwise returns a non-zero value.
Description
Sets the specified scene author name to the specified scene number.
Example
   Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
       ' Sets the scene number 0 to the scene author name
       SetSceneMaker(0, "OMRON")
  End Sub