WriteToStdOutput – Write to standard output stream

WriteToStdOutput – Write to standard output stream

Option ExplicitPrivate Declare Function GetStdHandle Lib "kernel32" (ByVal nStdHandle As Long) _    As LongPrivate Declare Function WriteFile Lib "kernel32" (ByVal hFile As Long, _    lpBuffer As Any, ByVal nNumberOfBytesToWrite As Long, _    lpNumberOfBytesWritten As Long, lpOverlapped As Any) As LongPrivate Const STD_OUTPUT_HANDLE = -11&' write to standard output channel'' NOTE: this routine works only in compiled applicationsSub WriteToStdOutput(ByVal Text As String)    Dim hStdOut As Long    Dim ret As Long    Dim bytesWritten As Long        ' get the handle of standard output    hStdOut = GetStdHandle(STD_OUTPUT_HANDLE)        ' write to standard output    ret = WriteFile(hStdOut, ByVal Text, Len(Text), bytesWritten, ByVal 0&)        ' deal with errors    If ret = 0 Then        Err.Raise 1001, , "Unable to write to standard output"    ElseIf bytesWritten < Len(Text) Then        Err.Raise 1002, , "Incomplete write operation"    End IfEnd Sub

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several