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

📄 mainfrm.h

📁 仓储管理系统主要提供一个仓储业务及其作业管理的信息存储和检索系统。通过入库管理、出库管理、报表生成管理、仓库人员管理、仓库位置信息管理等功能模块来实现仓库的综合管理
💻 H
字号:
// MainFrm.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MAINFRM_H__94D02FFC_3061_4E92_BBB7_EC889DDD2E4F__INCLUDED_)
#define AFX_MAINFRM_H__94D02FFC_3061_4E92_BBB7_EC889DDD2E4F__INCLUDED_

//#include "MyCoolMenu.h"
#include "DlgBaseInfoM.h"
#include "DlgInputStorageM.h"
#include "DlgStorageM.h"
#include "DlgQueryM.h"
#include "DlgOperator.h"

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

  

class CAaaView;

class CMainFrame : public CFrameWnd
{	 
public:
	BOOL  bFlag;      //登录状态
	CDlgBaseInfoM     *m_pdlgBaseInfoM; //基本信息管理主框架
	CDlgInputStorageM *m_pdlgInputM;    //入库管理主框架
	CDlgStorageM      *m_pdlgStoreageM; //库存管理主框架
	CDlgQueryM        *m_pdlgQueryM;	//查询管理主框架
 
//	CMyCoolMenu m_mnu;    //扩展菜单
	
protected: // create from serialization only
	CMainFrame();
	DECLARE_DYNCREATE(CMainFrame)

// Attributes
protected:
	CSplitterWnd m_wndSplitter;
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMainFrame)
	public:
	virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	//}}AFX_VIRTUAL

// Implementation
public:	
	void AdoInit();  //ADO初始化
	BOOL CreateExToolBar(); //工具栏扩展
	CImageList img;    
	virtual ~CMainFrame();
	CAaaView* GetRightPane();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:  // control bar embedded members
	CStatusBar  m_wndStatusBar;
	CToolBar    m_wndToolBar;
	CReBar		m_wndReBar;      //Rebar条

// Generated message map functions
protected:
	//{{AFX_MSG(CMainFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
	afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
	afx_msg void OnBtn1();
	afx_msg void OnBtn2();
	afx_msg void OnButton10();
	afx_msg void OnButton11();
	afx_msg void OnButton3();
	afx_msg void OnButton4();
	afx_msg void OnButton5();
	afx_msg void OnButton6();
	afx_msg void OnButton7();
	afx_msg void OnButton8();
	afx_msg void OnButton9();
	afx_msg void OnUpdateBtn2(CCmdUI* pCmdUI);
	afx_msg void OnUpdateBtn1(CCmdUI* pCmdUI);
	afx_msg void OnPaint();
	afx_msg void OnProductInQuery();
	afx_msg void OnProductInput();
	afx_msg void OnProductM();
	afx_msg void OnProductOut();
	afx_msg void OnProductOutPrint();
	afx_msg void OnReportGoodBadQuery();
	afx_msg void OnStoreAdjust();
	afx_msg void OnStoreM();
	afx_msg void OnStorePd();
	afx_msg void OnStorePrint();
	afx_msg void OnStoreTopBottom();
	afx_msg void OnInputBackQuery();
	afx_msg void OnInputBack();
	afx_msg void OnOperatorM();
	afx_msg void OnPrividerM();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnQuery2();
	//}}AFX_MSG
	afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
	afx_msg void OnViewStyle(UINT nCommandID);
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_MAINFRM_H__94D02FFC_3061_4E92_BBB7_EC889DDD2E4F__INCLUDED_)

⌨️ 快捷键说明

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