I\'m following the definition for CFileDialog, yet VS2013 is still telling me that there is no constructor available for the arguments that I\'m passing in.
CFileDialog
Ok. So I've changed my code to the following:
CFile theFile; TCHAR strFilter[] = { _T("TXT Files (*.txt)|*.txt|All Files (*.*)|*.*||") }; CFileDialog fDlg = CFileDialog(TRUE, _T(".txt"), NULL, 0, strFilter);
And, there are now no problems. Thank you for your responses!