home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Demos
/
Ipcdemos
/
TRCVIEW.PAS
< prev
Wrap
Pascal/Delphi Source File
|
1999-08-11
|
532b
|
32 lines
unit TrcView;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TTraceForm = class(TForm)
TraceData: TListBox;
procedure TraceDataKeyPress(Sender: TObject; var Key: Char);
private
{ Private declarations }
public
{ Public declarations }
end;
var
TraceForm: TTraceForm;
implementation
{$R *.DFM}
procedure TTraceForm.TraceDataKeyPress(Sender: TObject; var Key: Char);
begin
if Key = #27 then Close;
end;
end.