Imports base64 encoded data into the Blob.
None
object.FromBase64 Data
The FromBase64 Method syntax has these parts:
The FromBase64 method will import BASE64 encoded data into the Blob. This can be data generated by the ToBase64 method, or data from another source.
Example of use:
Dim b As New StreamBlob Set b.Stream = ref_stream b.FromBase64 ("c29tZXRleHQ=") Debug.Print b
result: sometext
Your browser does not support iframes.