selectstore.h
上传用户:tangpei45
上传日期:2013-07-14
资源大小:9104k
文件大小:1k
- //---------------------------------------------------------------------------
- #ifndef selectstoreH
- #define selectstoreH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <DB.hpp>
- #include <DBGrids.hpp>
- #include <DBTables.hpp>
- #include <Grids.hpp>
- //---------------------------------------------------------------------------
- class TfmSelectStore : public TForm
- {
- __published: // IDE-managed Components
- TQuery *Query1;
- TDataSource *DataSource1;
- TDBGrid *DBGrid1;
- void __fastcall DBGrid1DblClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TfmSelectStore(TComponent* Owner);
- AnsiString m_szGoodID; // 显示该货号对应的库存
- AnsiString m_szSelectStore; // 选择的仓库
- double m_dStoreNumber; // 选择的仓库打印的库存
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TfmSelectStore *fmSelectStore;
- //---------------------------------------------------------------------------
- #endif