我是 Visual Studio C++ 的初学者。我正在使用 MFC 创建一个基于对话框的应用程序。我想读取一些文件并在对话框中显示该文件中的一些必需文本。
代码是:
CFileFind finder;
bool bFound;
CString filename = "C:\\FilesLocation\\*.txt";
bFound = finder.FindFile(filename);
if(bFound)
{
m_List.AddString(finder.GetFileName()); }
in the last line, error appears, whereas m_List is the member variable for List Control/
并且 Clistctrl 没有成员 Addstring。
如何访问文件名并在对话框中显示?