home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / CTRLFORM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-19  |  1.8 KB  |  59 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef CtrlFormH
  3. #define CtrlFormH
  4. //---------------------------------------------------------------------------
  5. #include <Forms.hpp>
  6. #include <ExtCtrls.hpp>
  7. #include <Controls.hpp>
  8. #include <Classes.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <DBCGrids.hpp>
  11. #include <DBCtrls.hpp>
  12. #include <Mask.hpp>
  13. #include <DBGrids.hpp>
  14. #include <Grids.hpp>
  15. #include <Menus.hpp>
  16. //---------------------------------------------------------------------------
  17. class TFmCtrlGrid : public TForm
  18. {
  19. __published:
  20.     TBevel *Bevel1;
  21.     TLabel *Label5;
  22.     TLabel *Label6;
  23.     TLabel *Label7;
  24.     TLabel *Label8;
  25.     TLabel *Label9;
  26.     TLabel *Label10;
  27.     TLabel *Label11;
  28.     TLabel *lPurchase;
  29.     TLabel *lTotalCost;
  30.     TLabel *lTotalShares;
  31.     TLabel *lDifference;
  32.     TDBCtrlGrid *DBCtrlGrid1;
  33.     TLabel *Label1;
  34.     TLabel *Label2;
  35.     TLabel *Label3;
  36.     TLabel *Label4;
  37.     TDBEdit *DBEdit1;
  38.     TDBEdit *DBEdit2;
  39.     TDBEdit *DBEdit3;
  40.     TDBEdit *DBEdit4;
  41.     TDBGrid *DBGrid1;
  42.     TButton *Button1;
  43.     TDBNavigator *DBNavigator1;
  44.     TMainMenu *MainMenu1;
  45.     TMenuItem *About1;
  46.     void __fastcall DBCtrlGrid1Enter(TObject *Sender);
  47.     void __fastcall Button1Click(TObject *Sender);
  48.     void __fastcall DBGrid1Enter(TObject *Sender);
  49.     void __fastcall About1Click(TObject *Sender);
  50.     void __fastcall FormShow(TObject *Sender);
  51. private:        // private user declarations
  52. public:         // public user declarations
  53.     virtual __fastcall TFmCtrlGrid(TComponent* Owner);
  54. };
  55. //---------------------------------------------------------------------------
  56. extern TFmCtrlGrid *FmCtrlGrid;
  57. //---------------------------------------------------------------------------
  58. #endif
  59.