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