home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 February
/
Chip_2004-02_cd1.bin
/
zkuste
/
konfig
/
download
/
msic
/
Demos
/
6
/
ProcView.dpr
< prev
next >
Wrap
Text File
|
2003-07-09
|
237b
|
15 lines
program ProcView;
uses
Forms,
Main in 'Main.pas' {wnd_Main};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Process Viewer';
Application.CreateForm(Twnd_Main, wnd_Main);
Application.Run;
end.