Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Updates the current state of the CFileDialog based on the values stored in the m_ofn data structure.
void ApplyOFNToShellDialog();
Remarks
In versions of Windows before Windows Vista, the member OPENFILENAME data structure was continuously synchronized with the state of the CFileDialog. Any changes to the m_ofn member variable were immediately reflected in the state of the dialog box. Also, any changes to the state of the dialog box immediately update the m_ofn member variable.
In Windows Vista, the values in the m_ofn member variable and state of the CFileDialog are not guaranteed to be synchronized. This function forces the state of the CFileDialog to be updated to match the m_ofn structure. Windows calls this function automatically during CFileDialog::DoModal.
For more information about how to use the CFileDialog class under Windows Vista, see CFileDialog Class.
Example
See the example for CFileDialog::UpdateOFNFromShellDialog.
Requirements
Minimum required operating system: Windows Vista
Header: afxdlgs.h
See Also
Reference
CFileDialog::UpdateOFNFromShellDialog