home *** CD-ROM | disk | FTP | other *** search
- /*************************************************
- HTBPass.dll
-
- PasswordRun.cpp
-
- Copyright TransEra Corporation 1999
- *************************************************/
- #include "stdafx.h"
- #include "HTBPass.h"
- #include "PasswordRun.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- PasswordRun::PasswordRun(CWnd* pParent /*=NULL*/)
- : CDialog(PasswordRun::IDD, pParent) {
- //{{AFX_DATA_INIT(PasswordRun)
- m_UserName = _T("");
- m_Password = _T("");
- //}}AFX_DATA_INIT
- }
-
- void PasswordRun::DoDataExchange(CDataExchange* pDX) {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(PasswordRun)
- DDX_Text(pDX, IDC_EDIT1, m_UserName);
- DDV_MaxChars(pDX, m_UserName, 256);
- DDX_Text(pDX, IDC_EDIT2, m_Password);
- DDV_MaxChars(pDX, m_Password, 256);
- //}}AFX_DATA_MAP
- }
-
- BEGIN_MESSAGE_MAP(PasswordRun, CDialog)
- //{{AFX_MSG_MAP(PasswordRun)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- void PasswordRun::OnOK() {
- CDialog::OnOK();
- }
-
- void PasswordRun::OnCancel() {
- CDialog::OnCancel();
- }
-