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

百货/超市行业

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef selectstoreH
  3. #define selectstoreH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <DB.hpp>
  10. #include <DBGrids.hpp>
  11. #include <DBTables.hpp>
  12. #include <Grids.hpp>
  13. //---------------------------------------------------------------------------
  14. class TfmSelectStore : public TForm
  15. {
  16. __published: // IDE-managed Components
  17.     TQuery *Query1;
  18.     TDataSource *DataSource1;
  19.     TDBGrid *DBGrid1;
  20.     void __fastcall DBGrid1DblClick(TObject *Sender);
  21. private: // User declarations
  22. public: // User declarations
  23.     __fastcall TfmSelectStore(TComponent* Owner);
  24.     AnsiString m_szGoodID;    // 显示该货号对应的库存
  25.     AnsiString m_szSelectStore;    // 选择的仓库
  26.     double m_dStoreNumber;    // 选择的仓库打印的库存
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TfmSelectStore *fmSelectStore;
  30. //---------------------------------------------------------------------------
  31. #endif