wodCrypt ActiveX Control - FromHex Method
      
 

Description

Imports hex encoded data into the Blob.


Return Type

None  


Syntax

object.FromHex Data



The FromHex Method syntax has these parts:

Part Description
object An expression evaluating to an object of type StreamBlob.
Data Required. A String value. Contains HEX encoded data.

Remarks

The FromHEX method will import HEX encoded data (a series of HEX values) into the Blob. This can be data generated by the ToHex method, or data from another source.

Example of use:

Dim b As New StreamBlob
Set b.Stream = ref_Stream
b.FromHex ("736f6d6574657874")
Debug.Print b

result:
sometext