Click to See Complete Forum and Search --> : Re: CFileDialog


Franky Braem
March 29th, 1999, 12:44 AM
Use this :

CFileDialog dlg(...);

if ( dlg.DoModal() == ID_OK )

{

POSITION pos = dlg.GetStartPosition();

while (pos)

{

CString sFileName = dlg.getNextPathName(pos);

...

}

}