ScreenUPG Namespace > ScreenUPG Class > RawDataTransmitBytes Method : RawDataTransmitBytes(Byte[]) Method |
Depending on the type of terminal and type of host connection, this data may have to be in the 8-bit ASCII, 8-bit EBCDIC or 6-bit ALC character set.
In the case of ALC, you must have two leading placeholder characters and one trailing placeholder character in your buffer (i.e. nn mm "real data" zz).
'Declaration
Public Overloads Function RawDataTransmitBytes( _ ByRef inStream As Byte() _ ) As Integer
'Usage
Dim instance As ScreenUPG Dim inStream As Byte() Dim value As Integer value = instance.RawDataTransmitBytes(inStream)
public: int RawDataTransmitBytes( array<byte>% inStream )
Dim rdtb As Byte() 'Send an array of bytes to host through screen object bypassing presentation space. ReDim rdtb(4) rdtb(0) = Asc("t") rdtb(1) = Asc("e") rdtb(2) = Asc("x") rdtb(3) = Asc("t") m_screen.RawDataTransmitBytes rdtb
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2