home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / PROC.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  2KB  |  78 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef ProcH
  7. #define ProcH
  8. //----------------------------------------------------------------------------
  9. #include <ComCtrls.hpp>
  10. #include <Buttons.hpp>
  11. #include <ExtCtrls.hpp>
  12. #include <Menus.hpp>
  13. #include <StdCtrls.hpp>
  14. #include <Dialogs.hpp>
  15. #include <Forms.hpp>
  16. #include <Controls.hpp>
  17. #include <Graphics.hpp>
  18. #include <Classes.hpp>
  19. #include <SysUtils.hpp>
  20. #include <Messages.hpp>
  21. #include <Windows.hpp>
  22. #include <System.hpp>
  23. //----------------------------------------------------------------------------
  24. class TForm1 : public TForm
  25. {
  26. __published:
  27.     TGroupBox *GroupBox1;
  28.     TRadioButton *RadioButton1;
  29.     TRadioButton *RadioButton2;
  30.     TRadioButton *RadioButton3;
  31.     TMainMenu *MainMenu1;
  32.     TMenuItem *File1;
  33.     TMenuItem *New1;
  34.     TMenuItem *Exit1;
  35.     TMenuItem *N1;
  36.     TMenuItem *Help1;
  37.     TMenuItem *About1;
  38.     TPanel *Panel1;
  39.     TSpeedButton *SpeedButton3;
  40.     TSpeedButton *SpeedButton4;
  41.     TStatusBar *StatusBar1;
  42.     TListBox *ListBox1;
  43.     TMenuItem *Refresh1;
  44.     TRadioButton *RadioButton4;
  45.     TLabel *Label2;
  46.     TLabel *Label3;
  47.     TLabel *Label4;
  48.     TTimer *Timer1;
  49.     TImage *Image1;
  50.     TBevel *Bevel1;
  51.     TSpeedButton *SpeedButton2;
  52.     TSpeedButton *SpeedButton1;
  53.     void __fastcall Exit1Click(TObject *Sender);
  54.     void __fastcall About1Click(TObject *Sender);
  55.     
  56.     
  57.     void __fastcall SpeedButton4Click(TObject *Sender);
  58.     void __fastcall RadioButton1Click(TObject *Sender);
  59.     
  60.     
  61.     void __fastcall New1Click(TObject *Sender);
  62.     void __fastcall Refresh1Click(TObject *Sender);
  63.     
  64.     
  65.     void __fastcall SpeedButton3Click(TObject *Sender);
  66.     void __fastcall ListBox1Click(TObject *Sender);
  67.     void __fastcall FormShow(TObject *Sender);
  68.     void __fastcall Timer1Timer(TObject *Sender);
  69.     void __fastcall SpeedButton2Click(TObject *Sender);
  70.     void __fastcall SpeedButton1Click(TObject *Sender);
  71. public:
  72.     virtual __fastcall TForm1(TComponent *Owner);
  73. };
  74. //----------------------------------------------------------------------------
  75. extern TForm1 *Form1;
  76. //----------------------------------------------------------------------------
  77. #endif    
  78.