StockDlg.cpp
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:7k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // StockDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Stock.h"
  5. #include "StockDlg.h"
  6. #include "LoginDlg.h"
  7. #include "Users.h"
  8. #include "ClientManDlg.h"
  9. #include "StoreHouseManDlg.h"
  10. #include "UserManDlg.h"
  11. #include "ChangePwdDlg.h"
  12. #include "ProTypeManDlg.h"
  13. #include "ProManDlg.h"
  14. #include "StoreInManDlg.h"
  15. #include "TakeOutManDlg.h"
  16. #include "CheckManDlg.h"
  17. #include "NumAlarmDlg.h"
  18. #include "ValidDlg.h"
  19. #include "Report1Dlg.h"
  20. #include "Report2Dlg.h"
  21. #include "ADOConn.h"
  22. extern CUsers curUser;
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CAboutDlg dialog used for App About
  30. class CAboutDlg : public CDialog
  31. {
  32. public:
  33. CAboutDlg();
  34. // Dialog Data
  35. //{{AFX_DATA(CAboutDlg)
  36. enum { IDD = IDD_ABOUTBOX };
  37. //}}AFX_DATA
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CAboutDlg)
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45. //{{AFX_MSG(CAboutDlg)
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  50. {
  51. //{{AFX_DATA_INIT(CAboutDlg)
  52. //}}AFX_DATA_INIT
  53. }
  54. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  55. {
  56. CDialog::DoDataExchange(pDX);
  57. //{{AFX_DATA_MAP(CAboutDlg)
  58. //}}AFX_DATA_MAP
  59. }
  60. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  61. //{{AFX_MSG_MAP(CAboutDlg)
  62. // No message handlers
  63. //}}AFX_MSG_MAP
  64. END_MESSAGE_MAP()
  65. /////////////////////////////////////////////////////////////////////////////
  66. // CStockDlg dialog
  67. CStockDlg::CStockDlg(CWnd* pParent /*=NULL*/)
  68. : CDialog(CStockDlg::IDD, pParent)
  69. {
  70. //{{AFX_DATA_INIT(CStockDlg)
  71. // NOTE: the ClassWizard will add member initialization here
  72. //}}AFX_DATA_INIT
  73. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  74. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  75. }
  76. void CStockDlg::DoDataExchange(CDataExchange* pDX)
  77. {
  78. CDialog::DoDataExchange(pDX);
  79. //{{AFX_DATA_MAP(CStockDlg)
  80. // NOTE: the ClassWizard will add DDX and DDV calls here
  81. //}}AFX_DATA_MAP
  82. }
  83. BEGIN_MESSAGE_MAP(CStockDlg, CDialog)
  84. //{{AFX_MSG_MAP(CStockDlg)
  85. ON_WM_SYSCOMMAND()
  86. ON_WM_PAINT()
  87. ON_WM_QUERYDRAGICON()
  88. ON_COMMAND(IDR_EXIT, OnExit)
  89. ON_COMMAND(IDR_CLIENT, OnClient)
  90. ON_COMMAND(IDR_STOREHOUSE, OnStorehouse)
  91. ON_COMMAND(IDR_USERS, OnUsers)
  92. ON_COMMAND(IDR_CHANGEPWD, OnChangepwd)
  93. ON_COMMAND(IDR_PROTYPE, OnProtype)
  94. ON_COMMAND(IDR_PRODUCT, OnProduct)
  95. ON_COMMAND(IDR_STOREIN, OnStorein)
  96. ON_COMMAND(IDR_TAKEOUT, OnTakeout)
  97. ON_COMMAND(IDR_CHECK, OnCheck)
  98. ON_COMMAND(IDR_ALARM1, OnAlarm1)
  99. ON_COMMAND(IDR_ALARM2, OnAlarm2)
  100. ON_COMMAND(IDR_REPORT1, OnReport1)
  101. ON_COMMAND(IDR_REPORT2, OnReport2)
  102. ON_COMMAND(IDR_BACKUP, OnBackup)
  103. ON_COMMAND(IDR_RESTORE, OnRestore)
  104. //}}AFX_MSG_MAP
  105. END_MESSAGE_MAP()
  106. /////////////////////////////////////////////////////////////////////////////
  107. // CStockDlg message handlers
  108. BOOL CStockDlg::OnInitDialog()
  109. {
  110. CDialog::OnInitDialog();
  111. // Add "About..." menu item to system menu.
  112. // IDM_ABOUTBOX must be in the system command range.
  113. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  114. ASSERT(IDM_ABOUTBOX < 0xF000);
  115. CMenu* pSysMenu = GetSystemMenu(FALSE);
  116. if (pSysMenu != NULL)
  117. {
  118. CString strAboutMenu;
  119. strAboutMenu.LoadString(IDS_ABOUTBOX);
  120. if (!strAboutMenu.IsEmpty())
  121. {
  122. pSysMenu->AppendMenu(MF_SEPARATOR);
  123. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  124. }
  125. }
  126. // Set the icon for this dialog.  The framework does this automatically
  127. //  when the application's main window is not a dialog
  128. SetIcon(m_hIcon, TRUE); // Set big icon
  129. SetIcon(m_hIcon, FALSE); // Set small icon
  130. // TODO: Add extra initialization here
  131. CLoginDlg dlg;
  132. if (dlg.DoModal() != IDOK)
  133. OnOK();
  134. else
  135.     //读取用户信息到curUser对象中
  136. curUser.GetData(dlg.m_UserName);
  137. return TRUE;  // return TRUE  unless you set the focus to a control
  138. }
  139. void CStockDlg::OnSysCommand(UINT nID, LPARAM lParam)
  140. {
  141. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  142. {
  143. CAboutDlg dlgAbout;
  144. dlgAbout.DoModal();
  145. }
  146. else
  147. {
  148. CDialog::OnSysCommand(nID, lParam);
  149. }
  150. }
  151. // If you add a minimize button to your dialog, you will need the code below
  152. //  to draw the icon.  For MFC applications using the document/view model,
  153. //  this is automatically done for you by the framework.
  154. void CStockDlg::OnPaint() 
  155. {
  156. if (IsIconic())
  157. {
  158. CPaintDC dc(this); // device context for painting
  159. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  160. // Center icon in client rectangle
  161. int cxIcon = GetSystemMetrics(SM_CXICON);
  162. int cyIcon = GetSystemMetrics(SM_CYICON);
  163. CRect rect;
  164. GetClientRect(&rect);
  165. int x = (rect.Width() - cxIcon + 1) / 2;
  166. int y = (rect.Height() - cyIcon + 1) / 2;
  167. // Draw the icon
  168. dc.DrawIcon(x, y, m_hIcon);
  169. }
  170. else
  171. {
  172. CDialog::OnPaint();
  173. }
  174. }
  175. // The system calls this to obtain the cursor to display while the user drags
  176. //  the minimized window.
  177. HCURSOR CStockDlg::OnQueryDragIcon()
  178. {
  179. return (HCURSOR) m_hIcon;
  180. }
  181. void CStockDlg::OnExit() 
  182. {
  183. // TODO: Add your command handler code here
  184. OnOK();
  185. }
  186. void CStockDlg::OnClient() 
  187. {
  188. // TODO: Add your command handler code here
  189. CClientManDlg dlg;
  190. dlg.DoModal();
  191. }
  192. void CStockDlg::OnStorehouse() 
  193. {
  194. // TODO: Add your command handler code here
  195. CStoreHouseManDlg dlg;
  196. dlg.DoModal();
  197. }
  198. void CStockDlg::OnUsers() 
  199. {
  200. // TODO: Add your command handler code here
  201. if (curUser.GetUser_type() == 2)
  202. { //普通用户不能管理用户信息
  203. MessageBox("没有权限");
  204. return;
  205. }
  206. CUserManDlg dlg;
  207. dlg.DoModal();
  208. }
  209. void CStockDlg::OnChangepwd() 
  210. {
  211. // TODO: Add your command handler code here
  212. CChangePwdDlg dlg;
  213. dlg.m_UserName = curUser.GetUserName();
  214. dlg.DoModal();
  215. }
  216. void CStockDlg::OnProtype() 
  217. {
  218. // TODO: Add your command handler code here
  219. CProTypeManDlg dlg;
  220. dlg.DoModal();
  221. }
  222. void CStockDlg::OnProduct() 
  223. {
  224. // TODO: Add your command handler code here
  225. CProManDlg dlg;
  226. dlg.DoModal();
  227. }
  228. void CStockDlg::OnStorein() 
  229. {
  230. // TODO: Add your command handler code here
  231. CStoreInManDlg dlg;
  232. dlg.DoModal();
  233. }
  234. void CStockDlg::OnTakeout() 
  235. {
  236. // TODO: Add your command handler code here
  237. CTakeOutManDlg dlg;
  238. dlg.DoModal();
  239. }
  240. void CStockDlg::OnCheck() 
  241. {
  242. // TODO: Add your command handler code here
  243. CCheckManDlg dlg;
  244. dlg.DoModal();
  245. }
  246. void CStockDlg::OnAlarm1() 
  247. {
  248. // TODO: Add your command handler code here
  249. CNumAlarmDlg dlg;
  250. dlg.DoModal();
  251. }
  252. void CStockDlg::OnAlarm2() 
  253. {
  254. // TODO: Add your command handler code here
  255. CValidDlg dlg;
  256. dlg.DoModal();
  257. }
  258. void CStockDlg::OnReport1() 
  259. {
  260. // TODO: Add your command handler code here
  261. CReport1Dlg dlg;
  262. dlg.DoModal();
  263. }
  264. void CStockDlg::OnReport2() 
  265. {
  266. // TODO: Add your command handler code here
  267. CReport2Dlg dlg;
  268. dlg.DoModal();
  269. }
  270. void CStockDlg::OnBackup() 
  271. {
  272. // TODO: Add your command handler code here
  273. ADOConn m_AdoConn;
  274. m_AdoConn.Backup();
  275. MessageBox("备份完成");
  276. }
  277. void CStockDlg::OnRestore() 
  278. {
  279. // TODO: Add your command handler code here
  280. ADOConn m_AdoConn;
  281. m_AdoConn.Restore();
  282. MessageBox("恢复完成");
  283. }