Yes it is possible to open an OpenDialog from VC++ console app.
Steps:
Create a new project. -> select Win32 Console Application.
In the next dialog, select "An Application that supports MFC".
you will be provided with the following code:
#include "stdafx.h"
#include "test.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// The one and only application object
CWinApp theApp;
using namespace std;
int tmain(int argc, TCHAR argv[], TCHAR* envp[])
{
int nRetCode = 0;
// initialize MFC and print and error on failure
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
// TODO: change error code to suit your needs
cerr << _T("Fatal Error: MFC initialization failed") << endl;
nRetCode = 1;
}
else
{
// TODO: code your application's behavior here.
CString strHello;
strHello.LoadString(IDS_HELLO);
cout << (LPCTSTR)strHello << endl;
}
return nRetCode;
}
Add the following code at the begining of "else" part
CFileDialog dlgOpen(TRUE,NULL,NULL,OFN_OVERWRITEPROMPT,"Text Files (.txt)|.txt||");
dlgOpen.DoModal();
Run the application. A open dialog will be opened automatically. Google "CFileDialog" for further help.