file picker
-
hi, can someone tell me where to find a file picker component for VC++? greetz, willem []D [] []D []
Hi ! I'm not sure that's what you want but you can use the CFileDialog (take a look at the help) from the MFC. You can specify some parameters (load or save file dialog, the file extentions, ...).
-
hi, can someone tell me where to find a file picker component for VC++? greetz, willem []D [] []D []
got the solution: FileDialog dlg(TRUE, NULL, NULL, OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT, "Exe Files (*.exe)|*.exe|All Files (*.*)|*.*||", this); dlg.m_ofn.lpstrTitle = "Select the File"; if(dlg.DoModal() == IDOK) { m_strExtractorPath = dlg.GetPathName(); } []D [] []D []
-
Hi ! I'm not sure that's what you want but you can use the CFileDialog (take a look at the help) from the MFC. You can specify some parameters (load or save file dialog, the file extentions, ...).
-
Hum, yes, I saw you found the same solution :)