home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap01 / mobigger / main.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-03-21  |  1.2 KB  |  51 lines

  1. unit Main;
  2. {
  3.   Note: This program assumes that you have a
  4.   files called CHIMES.WAV in the "C:\WINDOWS"
  5.   subdirectory. If you don't have the file,
  6.   or if your Windows directory has another name,
  7.   Then set the AutoOpen propterty of the TMPlayer
  8.   control to false.
  9. }
  10. interface
  11.  
  12. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Menus,
  13.   Tabs, ColorGrd, Gauges, MPlayer, Grids,
  14.   Switch, VBXCtrl, Pict, Dialogs, StdCtrls, Gauge,
  15.   FileCtrl, ExtCtrls, Buttons;
  16.  
  17. type
  18.   TForm1 = class(TForm)
  19.     Label1: TLabel;
  20.     Memo1: TMemo;
  21.     RadioButton1: TRadioButton;
  22.     ComboBox1: TComboBox;
  23.     Panel1: TPanel;
  24.     Image1: TImage;
  25.     ColorGrid1: TColorGrid;
  26.     Gauge1: TGauge;
  27.     MediaPlayer1: TMediaPlayer;
  28.     OpenDialog1: TOpenDialog;
  29.     SaveDialog1: TSaveDialog;
  30.     ColorDialog1: TColorDialog;
  31.     PrintDialog1: TPrintDialog;
  32.     BISWITCH1: TBISWITCH;
  33.     BitBtn1: TBitBtn;
  34.     DirectoryListBox1: TDirectoryListBox;
  35.     DriveComboBox1: TDriveComboBox;
  36.     BiGauge1: TBiGauge;
  37.   private
  38.     { Private declarations }
  39.   public
  40.     { Public declarations }
  41.   end;
  42.  
  43. var
  44.   Form1: TForm1;
  45.  
  46. implementation
  47.  
  48. {$R *.DFM}
  49.  
  50. end.
  51.