void COXCustomizeManager::OnOK() 
{
	// TODO: Add extra validation here
	if(!CloseManager(TRUE))
		return;

//	CDialog::OnOK();
	DestroyWindow();
}
void COXCustomizeManager::OnCancel() 
{
	// TODO: Add extra cleanup here
	if(!CloseManager(FALSE))
		return;

//	CDialog::OnCancel();
	DestroyWindow();
}
void COXCustomizeManager::OnDestroy() 
{
	CDialog::OnDestroy();
	
	// TODO: Add your message handler code here
	if(m_bInitialized)
	{
		CloseManager(FALSE);
	}
}
示例#4
0
IPEManager::~IPEManager() 
{
	CloseManager();
}
示例#5
0
void IPEManager::Close()
{
	CloseObject();
	CloseManager();
}