FZ_FormBase.PutAll
Performs a batch output of the state of terminals such as the parallel I/Os
Public Shared Function PutAll( _
ByVal ioIdent As String, _
ByVal data As UInteger _
) As Integer
Parameters
ioIdent
|
Type of input destination
ParallelIo: Parallel I/O
SerialNormal: Serial non-procedure communications
UdpNormal: Ethernet UDP non-procedure communications
|
Input
|
data
|
Input data
|
Input
|
Return Value
Returns 0 when the data is successfully input.
Otherwise returns a non-zero value.
Description
In case of ParallelIo, inputs the data to DO0-15.
The processing of this method is disabled for other I/Os.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim pData As UInteger
' Inputs the data in parallel
pData = 1
PutAll("ParallelIO", pData)
End Sub