⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dlgbaseinfom.h

📁 主要功能 企业仓库管理系统由基本信息管理模块、入库管理模块、库存管理模块、查询管理模块等几部分组成。 &#61553 基本信息管理模块 该模块主要包括操作员管理、商品信息管理、库存信息管理、供
💻 H
字号:
#if !defined(AFX_DLGBASEINFOM_H__7BF44C46_6EE6_4DD9_9FA5_79355F3B41AB__INCLUDED_)
#define AFX_DLGBASEINFOM_H__7BF44C46_6EE6_4DD9_9FA5_79355F3B41AB__INCLUDED_

#include "TabSheet.h"
#include "DlgOperator.h"
#include "DlgProductorInfo1.h"
#include "DlgStorageInfo.h"
#include "DlgProviderInfo1.h"

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DlgBaseInfoM.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CDlgBaseInfoM dialog

class CDlgBaseInfoM : public CDialog
{
// Construction
public:
	int nSelect;  //选择的属性页标识
	CDlgOperator1      m_dlg1; //操作员属性页面
	CDlgProductorInfo1 m_dlg2; //商品信息属性页面
	CDlgStorageInfo1  m_dlg3;  //入库信息属性页面
	CDlgProviderInfo1  m_dlg4; //供应商信息属性页面
	
	CToolBar    m_wndToolBar;   //对话框中加入工具栏对象
	CReBar		m_wndReBar;	    //CReBar 对象

	vector<OPERATOR>    strData;     //操作员信息容器
	vector<PRODUCTOR_INFO> strData1; //商品信息容器
	vector<STORAGE_INFO> strData2;   //入库信息容器
	vector<PROVIDER_INFO> strData3;  //供应商信息容器

	int iDataIndex;  //操作员信息记录标识
	int iDataIndex1; //商品信息记录标识
	int iDataIndex2; //入库信息记录标识
	int iDataIndex3; //供应商信息记录标识

	CDlgBaseInfoM(CWnd* pParent = NULL);   // standard constructor
	CDlgBaseInfoM(int iSelect, CWnd* pParent = NULL); //重载构造函数

// Dialog Data
	//{{AFX_DATA(CDlgBaseInfoM)
	enum { IDD = IDD_BASE_INFO_M };
	CTabSheet  m_tab;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDlgBaseInfoM)
	public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CDlgBaseInfoM)
	virtual BOOL OnInitDialog();
	afx_msg void OnClose();
	afx_msg void OnAdd();    //增加命令
	afx_msg void OnModify(); //修改命令
	afx_msg void OnQuery();  //查询命令
	afx_msg void OnDel();    //删除命令
	afx_msg void OnFirst();  //第一条命令
	afx_msg void OnBefore(); //前一条命令
	afx_msg void OnAfter();  //后一条命令
	afx_msg void OnEnd();    //最后一条命令
	afx_msg void OnShut();   //退出
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DLGBASEINFOM_H__7BF44C46_6EE6_4DD9_9FA5_79355F3B41AB__INCLUDED_)

⌨️ 快捷键说明

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