home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////
- // //
- // Copyright ⌐ 1997-1998, NetMasters, L.L.C //
- // - All rights reserved worldwide. - //
- // Portions may be Copyright ⌐ Inprise. //
- // //
- // URL Encoder/Decoder Demo Unit 1: (UNIT1.PAS) //
- // //
- // DESCRIPTION: //
- // //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY //
- // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE //
- // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR //
- // PURPOSE. //
- // //
- ///////////////////////////////////////////////////////////////////////////
- //
- // Revision History
- //
- // //
- ///////////////////////////////////////////////////////////////////////////
- unit urldem;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- NMURL, StdCtrls;
-
- type
- TForm1 = class(TForm)
- Edit1: TEdit;
- Label1: TLabel;
- Edit2: TEdit;
- Edit3: TEdit;
- Label2: TLabel;
- Label3: TLabel;
- Button1: TButton;
- NMURL1: TNMURL;
- procedure Button1Click(Sender: TObject);
- procedure NMURL1Error(Sender: TObject; Operation, ErrMsg: String);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- NMURL1.InputString := Edit1.Text;
- Edit2.Text := NMURL1.Encode;
- Edit3.Text := NMURL1.Decode;
- end;
-
- procedure TForm1.NMURL1Error(Sender: TObject; Operation, ErrMsg: String);
- begin
- ShowMessage(ErrMsg);
- end;
-
- end.
-