Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
Graph Builder Toolbar streamlines interactive graphing. Creates shortcuts on Report and GraphBuilder Helpers toolbars. Download and install the extension.
Function BytesToBstr(strBody, CodeBase)
Dim objstream
On Error Resume Next
Set objstream = CreateObject("Adodb. Stream")
With objstream
.Type = 1
.Mode = 3
.Open
.Write strBody
.Position = 0
.Type = 2
.Charset = CodeBase
BytesToBstr = .ReadText
End With
obj stream.Close
Set objstream = Nothing
If Err.Number <> 0 Then BytesToBstr = ""
On Error GoTo 0
End Function
I don't know what that (visual basic?) code does. It looks similar to JMP's HttpRequest, and similar to earlier code in this thread that used blobToChar to do the conversion.