home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / RCHART.ZIP / exmpl-1 / pas / LogWarn.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-07-19  |  494 b   |  35 lines

  1. unit LogWarn;
  2.  
  3. interface
  4.  
  5. uses
  6.   {$IFDEF VER90}
  7.   Windows,
  8.   {$ELSE}
  9.   WinProcs,
  10.   {$ENDIF}
  11.   Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  12.   StdCtrls;
  13.  
  14. type
  15.   TLogWarnForm = class(TForm)
  16.     Label1: TLabel;
  17.     Label2: TLabel;
  18.     Button1: TButton;
  19.     Label3: TLabel;
  20.     Label4: TLabel;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   LogWarnForm: TLogWarnForm;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.