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