FZ_FormBase.IoInitialize

Performs an I/O initialization

Public Shared Function IoInitialize( _
   ByVal ioIdent As String _
) As Integer

Parameters
ioIdent
Identification name of I/O module to initialize
ParallelIo: Parallel I/O
SerialNormal: Serial non-procedure communications
UdpNormal: Ethernet UDP non-procedure communications
Input

Return Value
Returns 0 when initializing the specified I/O succeeded.
If failed to initialize, returns a non-zero value.

Description
Initializes the specified I/O.

Example
   Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

       ' Initializes a parallel I/O
       IoInitialize("ParalelIO")

   End Sub