|
The Encoder is an ActiveX component from the Clever Internet ActiveX Suite library. It can be used to Encode or Decode files, streams or strings with any of the Quoted-Printable, MIME Base64 and UUEncode encoding formats.
This component is used by Mail Message for automatic encoding / decoding of attachments and formatting Text and HTML message parts in 7 bit code before email transfer.
- Encode and Decode strings and files
- Base64, Quoted Printable, UUEncode
- Character and Binary Encoding
- Define number of characters per each line
- Event notification about Encoding Progress
- Free one year upgrades and support
clEncoder1.EncodeFile "OriginalFile.zip", "EncodedFile.dat ", cmMIMEBase64 clEncoder1.DecodeFile "EncodedFile.dat", "OriginalFile.zip", cmMIMEBase64 |
EncodedString = clEncoder1.EncodeString("text to encode",cmMIMEBase64) OriginalString = clEncoder1.DecodeString("dGV4dCB0byBlbmNvZGU=",cmMIMEBase64) |
Please see the Demos code (SimpleEncoder) and also the indexed Help documentation provided with the Clever Internet ActiveX Suite installation to learn more about using this component in your application.
|