12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #pragma once
- #include "afxwin.h"
- #include "PassWord.h"
- #include "globe.h"
- class CRandomKeyDlg : public CDialog
- {
- public:
- CRandomKeyDlg(CWnd* pParent = NULL);
- enum { IDD = IDD_RANDOMKEY_DIALOG };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
- public:
- CMenu* menu;
- public:
- void calc_code();
- void CRC_CPCC(unsigned char *pucData,unsigned char nLen,unsigned char *pCRC);
- protected:
- HICON m_hIcon;
-
- virtual BOOL OnInitDialog();
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnBnClickedOk();
- public:
- CString edit1;
- public:
- CButton btn_ok;
- public:
- CButton btn_cancel;
- public:
- CStatic static1;
- public:
- CEdit editCtrl1;
- public:
- afx_msg void On32771();
- public:
- afx_msg void OnChangepassword();
- public:
- afx_msg void OnExit();
- public:
- afx_msg void OnDestroy();
- public:
- afx_msg void OnTimer(UINT_PTR nIDEvent);
- };
|