You are viewing articles in the General category &rarr


How to Base 64 (MIME) Encode and Decode a String

Posted December 15th @ 9:27 pm by m3Rlin

MIME encoding and decoding is used when transferring binary files over the Internet. Every byte is converted to an ASCII character that can be transfered with no problems. This is the code to encode and decode using Base 64 (MIME). You can TMemo’s and TRichEdit’s string text via the Text property. The original code has [...]

How to Start and Control Netscape Navigator

Posted December 15th @ 9:26 pm by m3Rlin

If you want to include a link to a web page and you want Netscape Navigator to do it you may want to look at this code. This should work with Netscape Navigator. This function has not yet been tested with Netscape Navigator 6.0.

uses
DDEMan, Registry;

procedure StartNetscape(const sURL: string);
const
sNETSCAPE = ‘Netscape’;
var
[...]

« Previous EntriesNext Entries »