Программа регистрации процесса производства для автоматизированной системы управления предприятием электронной промышленности
Дипломная работа - Компьютеры, программирование
Другие дипломы по предмету Компьютеры, программирование
_INIT (CNewPartDlg)
// NOTE: the ClassWizard will add member initialization here
// }}AFX_DATA_INIT
}
void CNewPartDlg:: DoDataExchange (CDataExchange* pDX)
{
CDialog:: DoDataExchange (pDX);
// {{AFX_DATA_MAP (CNewPartDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
// }}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP (CNewPartDlg, CDialog)
// {{AFX_MSG_MAP (CNewPartDlg)
// }}AFX_MSG_MAP
END_MESSAGE_MAP ()
void CAngstremApp:: OnObjectsPartsNew ()
{
// TODO: Add your command handler code here
CNewPartDlg newPartDlg;
newPartDlg. DoModal ();
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
// COpenPartDlg dialog
class COpenPartDlg: public CDialog
{
// Construction
public:
COpenPartDlg (CWnd* pParent = NULL); // standard constructor
// Dialog Data
// {{AFX_DATA (COpenPartDlg)
enum { IDD = IDD_PARTOPEN };
// NOTE: the ClassWizard will add data members here
// }}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
// {{AFX_VIRTUAL (COpenPartDlg)
protected:
virtual void DoDataExchange (CDataExchange* pDX); // DDX/DDV support
// }}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {{AFX_MSG (COpenPartDlg)
// NOTE: the ClassWizard will add member functions here
// }}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
COpenPartDlg:: COpenPartDlg (CWnd* pParent /*=NULL*/)
: CDialog (COpenPartDlg:: IDD, pParent)
{
// {{AFX_DATA_INIT (COpenPartDlg)
// NOTE: the ClassWizard will add member initialization here
// }}AFX_DATA_INIT
}
void COpenPartDlg:: DoDataExchange (CDataExchange* pDX)
{
CDialog:: DoDataExchange (pDX);
// {{AFX_DATA_MAP (COpenPartDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
// }}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP (COpenPartDlg, CDialog)
// {{AFX_MSG_MAP (COpenPartDlg)
// NOTE: the ClassWizard will add message map macros here
// }}AFX_MSG_MAP
END_MESSAGE_MAP ()
void CAngstremApp:: OnObjectsPartsOpen ()
{
// TODO: Add your command handler code here
COpenPartDlg openPartDlg;
openPartDlg. DoModal ();
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
// CViewAllPartsDlg dialog
class CViewAllPartsDlg: public CDialog
{
// Construction
public:
CViewAllPartsDlg (CWnd* pParent = NULL); // standard constructor
// Dialog Data
// {{AFX_DATA (CViewAllPartsDlg)
enum { IDD = IDD_PARTSVIEWALL };
// NOTE: the ClassWizard will add data members here
// }}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
// {{AFX_VIRTUAL (CViewAllPartsDlg)
protected:
virtual void DoDataExchange (CDataExchange* pDX); // DDX/DDV support
// }}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {{AFX_MSG (CViewAllPartsDlg)
// NOTE: the ClassWizard will add member functions here
// }}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
CViewAllPartsDlg:: CViewAllPartsDlg (CWnd* pParent /*=NULL*/)
: CDialog (CViewAllPartsDlg:: IDD, pParent)
{
// {{AFX_DATA_INIT (CViewAllPartsDlg)
// NOTE: the ClassWizard will add member initialization here
// }}AFX_DATA_INIT
}
void CViewAllPartsDlg:: DoDataExchange (CDataExchange* pDX)
{
CDialog:: DoDataExchange (pDX);
// {{AFX_DATA_MAP (CViewAllPartsDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
// }}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP (CViewAllPartsDlg, CDialog)
// {{AFX_MSG_MAP (CViewAllPartsDlg)
// NOTE: the ClassWizard will add message map macros here
// }}AFX_MSG_MAP
END_MESSAGE_MAP ()
void CAngstremApp:: OnObjectsPartsViewall ()
{
// TODO: Add your command handler code here
CViewAllPartsDlg viewAllPartsDlg;
viewAllPartsDlg. DoModal ();
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
// CDeletePartDlg dialog
class CDeletePartDlg: public CDialog
{
// Construction
public:
CDeletePartDlg (CWnd* pParent = NULL); // standard constructor
// Dialog Data
// {{AFX_DATA (CDeletePartDlg)
enum { IDD = IDD_PARTDELETE };
// NOTE: the ClassWizard will add data members here
// }}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
// {{AFX_VIRTUAL (CDeletePartDlg)
protected:
virtual void DoDataExchange (CDataExchange* pDX); // DDX/DDV support
// }}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {{AFX_MSG (CDeletePartDlg)
// NOTE: the ClassWizard will add member functions here
// }}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
CDeletePartDlg:: CDeletePartDlg (CWnd* pParent /*=NULL*/)
: CDialog (CDeletePartDlg:: IDD, pParent)
{
// {{AFX_DATA_INIT (CDeletePartDlg)
// NOTE: the ClassWizard will add member initialization here
// }}AFX_DATA_INIT
}
void CDeletePartDlg:: DoDataExchange (CDataExchange* pDX)
{
CDialog:: DoDataExchange (pDX);
// {{AFX_DATA_MAP (CDeletePartDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
// }}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP (CDeletePartDlg, CDialog)
// {{AFX_MSG_MAP (CDeletePartDlg)
// NOTE: the ClassWizard will add message map macros here
// }}AFX_MSG_MAP
END_MESSAGE_MAP ()
void CAngstremApp:: OnObjectsPartsDelete ()
{
// TODO: Add your command handler code here
CDeletePartDlg deletePartDlg;
deletePartDlg. DoModal ();
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
// CPartProcessingPage dialog
class CPartProcessingPage: public CPropertyPage
{
DECLARE_DYNCREATE (CPartProcessingPage)
// Construction
public:
CPartProcessingPage ();
~CPartProcessingPage ();
// Dialog Data
// {{AFX_DATA (CPartProcessingPage)
enum { IDD = IDD_PART_PROCESSING };
// NOTE - ClassWizard will add data members here.
// DO NOT EDIT what you see in these blocks of generated code!
// }}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
// {{AFX_VIRTUAL (CPartProcessingPage)
protected:
virtual void DoDataExchange (CDataExchange* pDX); // DDX/DDV support
// }}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {{AFX_MSG (CPartProcessingPage)
afx_msg void OnRefresh ();
afx_msg void OnStart ();
afx_msg void OnFinish ();
// }}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
IMPLEMENT_DYNCREATE (CPartProcessingPage, CPropertyPage)
CPartProcessingPage:: CPartProcessingPage (): CPropertyPage (CPartProcessingPage:: IDD)
{
// {{AFX_DATA_INIT (CPartProcessingPage)
// NOTE: the ClassWizard will add member initialization here
// }}AFX_DATA_INIT
}
CPartProcessingPage:: ~CPartProcessingPage ()
{
}
void CPartProcessingPage:: DoDataExchange (CDataExchange* pDX)
{
CPropertyPage:: DoDataExchange (pDX);
// {{AFX_DATA_MAP (CPartProcessingPage)
// NOTE: the ClassWizard will add DDX and DDV calls here
// }}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP (CPartProcessingPage, CPropertyPage)
// {{AFX_MSG_MAP (CPartProcessingPage)
ON_BN_CLICKED (IDREFRESH, OnRefresh)
ON_BN_CLICKED (IDC_START, OnStart)
ON_BN_CLICKED (IDC_FINISH, OnFinish)
// }}AFX_MSG_MAP
END_MESSAGE_MAP ()
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
// CPartProcessingsPage dialog
class CPartProcessingsPage: public CPropertyPage
{
DECLARE_DYNCREATE (CPartProcessingsPage)
// Construction
public:
CPartProcessingsPage ();
~CPartProcessingsPage ();
// Dialog Data
// {{AFX_DATA (CPartProcessingsPage)
enum { IDD = IDD_PART_PROCESSINGS };
// NOTE - ClassWizard will add data members here.
// DO NOT EDIT what you see in these blocks of generated code!
// }}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
// {{AFX_VIRTUAL (CPartProcessingsPage)
protected:
virtual void DoDataExchange (CDataExchange* pDX); // DDX/DDV support
// }}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
// {{AFX_MSG (CPartProcessingsPage)
// NOTE: the ClassWizard will add member functions here
// }}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
I