で複数のファイルを選択し、MFCは、私は複数のファイルにVC++ 6.0でのCFileDialog
CFileDialog opendialog(true); // opens the dialog for open;
opendialog.m_ofn.lpstrTitle="SELECT FILE"; //selects the file title;
opendialog.m_ofn.lpstrFilter="text files (*.txt)\0*.txt\0"; //selects the filter;
if(opendialog.DoModal()==IDOK) //checks wether ok or cancel button is pressed;
{
srcfilename=opendialog.GetPathName(); //gets the path name;
...
}
を選択するコードサンプルは、上記の時点で選択されているだけで1つのファイルを許可しますが、私は複数のテキストファイルを選択したいですたとえば、コントロールキー(ctrl +複数のファイルを選択)を押し続けます。どうすればこれを達成できますか?
私はより明確になりますように、あなたは私の例をすることができます –