home *** CD-ROM | disk | FTP | other *** search
- unit StrEdit;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- TSedForm = class(TForm)
- Panel1: TPanel;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- StrList: TMemo;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- SedForm: TSedForm;
-
- implementation
-
- {$R *.DFM}
-
- end.
-