StoreQuery.~h
上传用户:tangpei45
上传日期:2013-07-14
资源大小:9104k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef StoreQueryH
  3. #define StoreQueryH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <DB.hpp>
  10. #include <DBTables.hpp>
  11. #include <ExtCtrls.hpp>
  12. #include <DBGrids.hpp>
  13. #include <Grids.hpp>
  14. //---------------------------------------------------------------------------
  15. class TfmStoreQuery : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.     TPanel *Panel1;
  19.     TQuery *Query1;
  20.     TDataSource *DataSource1;
  21.     TLabel *Label1;
  22.     TEdit *edGoodCode;
  23.     TLabel *Label2;
  24.     TEdit *edGoodPY;
  25.     TLabel *Label3;
  26.     TComboBox *cboStore;
  27.     TDBGrid *DBGrid1;
  28.     TButton *btQuery;
  29.     void __fastcall FormCreate(TObject *Sender);
  30.     void __fastcall btQueryClick(TObject *Sender);
  31.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  32. private: // User declarations
  33. public: // User declarations
  34.     __fastcall TfmStoreQuery(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern PACKAGE TfmStoreQuery *fmStoreQuery;
  38. //---------------------------------------------------------------------------
  39. #endif