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

📄 mainfrm.h

📁 主要功能 企业仓库管理系统由基本信息管理模块、入库管理模块、库存管理模块、查询管理模块等几部分组成。 &#61553 基本信息管理模块 该模块主要包括操作员管理、商品信息管理、库存信息管理、供
💻 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 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
	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 + -