| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 | 
							- // SelectDB.cpp : implementation file
 
- //
 
- #include "stdafx.h"
 
- #include "cp_main.h"
 
- #include "SelectDB.h"
 
- #ifdef _DEBUG
 
- #define new DEBUG_NEW
 
- #undef THIS_FILE
 
- static char THIS_FILE[] = __FILE__;
 
- #endif
 
- /////////////////////////////////////////////////////////////////////////////
 
- // CSelectDB dialog
 
- CSelectDB::CSelectDB(CWnd* pParent /*=NULL*/)
 
- 	: CDialog(CSelectDB::IDD, pParent)
 
- {
 
- 	//{{AFX_DATA_INIT(CSelectDB)
 
- 	//}}AFX_DATA_INIT
 
- }
 
- void CSelectDB::DoDataExchange(CDataExchange* pDX)
 
- {
 
- 	CDialog::DoDataExchange(pDX);
 
- 	//{{AFX_DATA_MAP(CSelectDB)
 
- 	DDX_Control(pDX, IDC_PATH, m_ePath);
 
- 	//}}AFX_DATA_MAP
 
- }
 
- BEGIN_MESSAGE_MAP(CSelectDB, CDialog)
 
- 	//{{AFX_MSG_MAP(CSelectDB)
 
- 	ON_BN_CLICKED(IDC_SELECT, OnSelect)
 
- 	ON_BN_CLICKED(IDC_USE_DEFAULT, OnUseDefault)
 
- 	//}}AFX_MSG_MAP
 
- END_MESSAGE_MAP()
 
- /////////////////////////////////////////////////////////////////////////////
 
- // CSelectDB message handlers
 
- BOOL CSelectDB::OnInitDialog() 
 
- {
 
- 	CDialog::OnInitDialog();
 
- 	
 
- 	m_ePath.SetWindowText(CGetSetOptions::GetDBPath(FALSE));
 
- 	
 
- 	m_ePath.SetFocus();
 
- 	
 
- 	return FALSE;
 
- }
 
- void CSelectDB::OnOK() 
 
- {
 
- 	CString csPath;
 
- 	m_ePath.GetWindowText(csPath);
 
- 	CGetSetOptions::SetDBPath(csPath);
 
- 		
 
- 	CDialog::OnOK();
 
- }
 
- void CSelectDB::OnSelect() 
 
- {
 
- 	OPENFILENAME	FileName;
 
- 	TCHAR			szFileName[400];
 
- 	TCHAR			szDir[400];
 
- 	memset(&FileName, 0, sizeof(FileName));
 
- 	memset(szFileName, 0, sizeof(szFileName));
 
- 	memset(&szDir, 0, sizeof(szDir));
 
- 	FileName.lStructSize = sizeof(FileName);
 
- 	
 
- 	FileName.lpstrTitle = _T("Open Database");
 
- 	FileName.Flags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT|OFN_PATHMUSTEXIST;
 
- 	FileName.nMaxFile = 400;
 
- 	FileName.lpstrFile = szFileName;
 
- 	FileName.lpstrInitialDir = szDir;
 
- 	FileName.lpstrFilter = _T("Database Files (.MDB)\0*.mdb");
 
- 	FileName.lpstrDefExt = _T("mdb");
 
- 	if(GetOpenFileName(&FileName) == 0)
 
- 		return;
 
- 	CString	csPath(FileName.lpstrFile);
 
- 	if(ValidDB(csPath) == FALSE)
 
- 	{
 
- 		MessageBox(_T("Invalid Database"), _T("Ditto"), MB_OK);
 
- 		m_ePath.SetFocus();
 
- 	}
 
- 	else
 
- 		m_ePath.SetWindowText(csPath);	
 
- }
 
- void CSelectDB::OnUseDefault() 
 
- {
 
- 	CGetSetOptions::SetDBPath("");
 
- 	CString csPath = CGetSetOptions::GetDBPath();
 
- 	if(ValidDB(csPath) == FALSE)
 
- 		DeleteFile(csPath);
 
- 	
 
- 	if(CheckDBExists(CGetSetOptions::GetDBPath()))
 
- 		EndDialog(IDOK);
 
- }
 
 
  |