-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbinaryToString.bas
37 lines (28 loc) · 1.17 KB
/
binaryToString.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'''''''''''''''''''''''''''''''''''''''''''''''
' Convert Binary To String '
'''''''''''''''''''''''''''''''''''''''''''''''
' *** Note: 2003 Antonin Foller, http://www.motobit.com ***
'recieves bianary data (ex. VT_UI1 | VT_ARRAY) as variant
'outputs a string
Function binaryToString(Binary As Variant) As String
'dimension constants
Const adTypeText = 2
Const adTypeBinary = 1
'create stream object
Dim BinaryStream 'As New Stream
Set BinaryStream = CreateObject("ADODB.Stream")
'specify stream type - we want to save text/string data
BinaryStream.Type = adTypeBinary
'open the stream and write text/string data to the object
BinaryStream.Open
BinaryStream.Write Binary
'change stream type To binary
BinaryStream.Position = 0
BinaryStream.Type = adTypeText
'specify charset for the source text (unicode) data
BinaryStream.Charset = "us-ascii"
'return - open the stream and get binary data from the object
binaryToString = BinaryStream.ReadText
'garbage collection
Set BinaryStream = Nothing
End Function