home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 035A / COMPED2.ZIP / STREDIT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-03-04  |  425 b   |  29 lines

  1. unit StrEdit;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, Buttons, ExtCtrls;
  8.  
  9. type
  10.   TSedForm = class(TForm)
  11.     Panel1: TPanel;
  12.     BitBtn1: TBitBtn;
  13.     BitBtn2: TBitBtn;
  14.     StrList: TMemo;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   SedForm: TSedForm;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.