GetSaveFileName (Windows Embedded CE 6.0)
1/6/2010
This function creates a system-defined dialog box that enables the user to select a file to save.
Syntax
BOOL GetSaveFileName(
LPOPENFILENAME lpofn
);
Parameters
- lpofn
[in] Long pointer to an OPENFILENAME structure that contains information used to initialize the dialog box. When GetSaveFileName returns, this structure contains information about the user's file selection.
Return Value
Nonzero indicates that the user specified a file name and clicked the OK button. The buffer pointed to by the lpstrFile member of the OPENFILENAME structure contains the full path and filename specified by the user.
Zero indicates that the user canceled or closed the Save dialog box or that an error occurred. To get extended error information, call GetLastError. GetSaveFileName sets only the ERROR_INVALID_PARAMETER and ERROR_OUTOFMEMORY errors.
Remarks
Not all members of the OPENFILENAME structure are defined in Windows Embedded CE. For information about the defined members, see the reference topic for the OPENFILENAME structure.
Windows Embedded CE modifies the meaning of the following members of the OPENFILENAME structure when it is passed into the GetOpenFileName function.
- Flags
If this member is set to the OFN_PROJECT value, the GetOpenFileName function opens the Folder dialog box. Otherwise, the function opens the Open dialog box.
- lpstrFile
When GetOpenFileName returns successfully, this member is used to retrieve full path of the selected file name.
- lpstrFileTitle
When GetOpenFileName returns successfully, this member is used to retrieve the project folder name only.
- lpstrInitialDir
Pointer to a string that receives the initial folder name, but not the full path name.
When the GetOpenFileName function is called, Windows Embedded CE adds the following prespecified undefined members:
- lpstrCustomFilter
- lpstrMaxCusFilter
- lpstrDefExtension
- lCustData
- lpfnHook
- lpstrTemplateName
Requirements
Header | commdlg.h |
Library | Fileopen.lib |
Windows Embedded CE | Windows CE 1.0 and later |
See Also
Reference
Common Dialog Boxes Functions
GetOpenFileName
WM_CTLCOLORDLG
OPENFILENAME