#pragma once
// LoginDialog dialog
class LoginDialog : public CDialog
{
DECLARE_DYNAMIC(LoginDialog)
public:
LoginDialog(CWnd* pParent = NULL); // standard constructor
virtual ~LoginDialog();
// Dialog Data
enum { IDD = IDD_FORMVIEW };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnEnChangeEdit1();
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedCancel();
};
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #2 | 10986 | Sven Erik Knop |
Updated for new-style P4V. Now using P4VC (there is no more P4V -cmd). Currently only Revgraph, Timelapse View and Submit are supported. |
||
| #1 | 7822 | Sven Erik Knop |
Preparations for log-in dialog. The dialog is written, but not hooked up yet, but all the parts compile and link. Error dialog now displays a different error text if the ticket has expired, in preparation for the next step. |