home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / TRCVIEW.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  532b  |  32 lines

  1. unit TrcView;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TTraceForm = class(TForm)
  11.     TraceData: TListBox;
  12.     procedure TraceDataKeyPress(Sender: TObject; var Key: Char);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   TraceForm: TTraceForm;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TTraceForm.TraceDataKeyPress(Sender: TObject; var Key: Char);
  27. begin
  28.   if Key = #27 then Close;
  29. end;
  30.  
  31. end.
  32.