home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 April A
/
Pcwk4a98.iso
/
PROGRAM
/
DELPHI16
/
Filepeek
/
FILEPEEK.DPR
next >
Wrap
Text File
|
1995-03-10
|
1KB
|
43 lines
program FilePeek;
(***********************************************************************
This is a simple little file viewer I whipped together in an hour or
two after getting my Delphi. It is able to display ICO, BMP, WMF files
as well as playing WAV and AVI files via the MediaPlayer control.
I am posting this program to help encourage other Delphi developers
to start sharing their code.
You will notice that there aren't too many lines of code (about 20 it
looks like). This attests to the amazing power of Delphi applications.
I would hate to have tackled this before Delphi came out. I have
written a number of pretty complex Windows Apps using BP7 and the
amount of drudgery that Delphi aleviates is immense.
If you like this program you can feel free to use it, however, if you
modify it, I would like you to send me whatever you did to it. If you
send me your CIS ID, I will send you copies of my custom controls that
I develop in the future. Please feel free to send me anything you are
working on as well. Perhaps we can spark ideas!
Robert Vivrette, Owner
Prime Time Programming
PO Box 5018
Walnut Creek, CA 94596-1018
Fax: (510) 939-3775
CIS: 76416,1373
***********************************************************************)
uses
Forms,
PeekUnit in 'PEEKUNIT.PAS' {Form1};
{$R *.RES}
begin
Application.Title := 'File Inspector';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.