home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Delphi.5 / Samples / sourceD5 / browutil.exe / BROWSER / MODISTRU.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-04-13  |  431 b   |  28 lines

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