Sample Visual Basic
Code to create an Compress a string:
Where Cryptocx1 is an instance of a Cryptocx Control.
''
'' De-Compress the specified String
''
Dim Cryptocx As New EasyByte_Software.Cryptocxv7
Cryptocx.LicenseKey = "DEMO"
Cryptocx.InputText = txtCompressed.Text
txtUncompressed.Text = Cryptocx.ZIPDeCompressString
'' Free up Memory Resources
''
Set Cryptocx = Nothing
|