Added extra button to scan folders (still disabled)

git-svn-id: svn://10.0.0.236/trunk@14718 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
locka%iol.ie 1998-11-15 17:18:06 +00:00
parent a72805248d
commit 061edb5b7e
2 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,7 @@ void CScanForFilesDlg::DoDataExchange(CDataExchange* pDX)
BEGIN_MESSAGE_MAP(CScanForFilesDlg, CDialog)
//{{AFX_MSG_MAP(CScanForFilesDlg)
ON_BN_CLICKED(IDC_SELECTFILE, OnSelectFile)
ON_BN_CLICKED(IDC_SELECTFOLDER, OnSelectFolder)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
@ -58,3 +59,9 @@ void CScanForFilesDlg::OnSelectFile()
UpdateData(FALSE);
}
}
void CScanForFilesDlg::OnSelectFolder()
{
// TODO: Add your control notification handler code here
}

View File

@ -37,6 +37,7 @@ protected:
//{{AFX_MSG(CScanForFilesDlg)
virtual void OnOK();
afx_msg void OnSelectFile();
afx_msg void OnSelectFolder();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};