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