home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
ACTIVEX
/
DELCTRLS
/
ABOUT16.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-06-16
|
549b
|
35 lines
unit About16;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
TMediaPlayerXAbout = class(TForm)
CtlImage: TSpeedButton;
NameLbl: TLabel;
OkBtn: TButton;
CopyrightLbl: TLabel;
DescLbl: TLabel;
end;
procedure ShowMediaPlayerXAbout;
implementation
{$R *.DFM}
procedure ShowMediaPlayerXAbout;
begin
with TMediaPlayerXAbout.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
end.