home *** CD-ROM | disk | FTP | other *** search
- unit Main;
- {
- Note: This program assumes that you have a
- files called CHIMES.WAV in the "C:\WINDOWS"
- subdirectory. If you don't have the file,
- or if your Windows directory has another name,
- Then set the AutoOpen propterty of the TMPlayer
- control to false.
- }
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Menus,
- Tabs, ColorGrd, Gauges, MPlayer, Grids,
- Switch, VBXCtrl, Pict, Dialogs, StdCtrls, Gauge,
- FileCtrl, ExtCtrls, Buttons;
-
- type
- TForm1 = class(TForm)
- Label1: TLabel;
- Memo1: TMemo;
- RadioButton1: TRadioButton;
- ComboBox1: TComboBox;
- Panel1: TPanel;
- Image1: TImage;
- ColorGrid1: TColorGrid;
- Gauge1: TGauge;
- MediaPlayer1: TMediaPlayer;
- OpenDialog1: TOpenDialog;
- SaveDialog1: TSaveDialog;
- ColorDialog1: TColorDialog;
- PrintDialog1: TPrintDialog;
- BISWITCH1: TBISWITCH;
- BitBtn1: TBitBtn;
- DirectoryListBox1: TDirectoryListBox;
- DriveComboBox1: TDriveComboBox;
- BiGauge1: TBiGauge;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- end.
-