Use this :
CFileDialog dlg(...);
if ( dlg.DoModal() == ID_OK )
{
POSITION pos = dlg.GetStartPosition();
while (pos)
{
CString sFileName = dlg.getNextPathName(pos);
...
}
}
| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | VB Forums | Developer.com |
|
Results 1 to 1 of 1
Thread: Re: CFileDialog
|
Click Here to Expand Forum to Full Width |