selectstore.~h

来自「基于c++builder的进销存储系统」· ~H 代码 · 共 33 行

~H
33
字号
//---------------------------------------------------------------------------

#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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?