ScreenUPG Namespace > ScreenUPG Class > SendStatus Method : SendStatus(Int32,Byte[]) Method |
'Declaration
Public Overloads Sub SendStatus( _ ByVal type As Integer, _ Optional ByRef detail As Byte() _ )
'Usage
Dim instance As ScreenUPG Dim type As Integer Dim detail As Byte() instance.SendStatus(type, detail)
public: void SendStatus( int type, array<byte>% detail )
Dim detail As Byte() Dim type As Long 'TODO: Fill in type and detail type = 42 ReDim detail(4) detail(0) = 0 detail(1) = 1 detail(2) = 2 detail(3) = 3 m_screen.SendStatus type, detail 'Or if no detail is required m_screen.SendStatus type
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