|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| commdlg.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
CDM_GETFOLDERPATH
[New - Windows NT]
The CDM_GETFOLDERPATH message retrieves the path of the currently open folder or directory for an
Explorer-style Open or Save As common dialog box. The dialog box must have been
created with the OFN_EXPLORER flag; otherwise, the message fails.
CDM_GETFOLDERPATH
wParam = (WPARAM) cbmax;
lParam = (LPARAM) (LPTSTR) psz;
// Corresponding macro
int CommDlg_OpenSave_GetFolderPath(hdlg, psz, cbmax);
Parameters
hdlg
Handle of the common dialog box window to receive the message.
psz
Pointer to the buffer that receives the path.
cbmax
Size, in bytes (ANSI version) or characters (Unicode version), of the psz buffer.
Return Values
If the message succeeds, the return value is the size, in bytes or characters,
of the path string, including the terminating NULL character. This is either
the number of bytes or characters copied to the psz buffer, or the required buffer size if the buffer is too small.
If an error occurs, the return value is less than zero.
See Also
GetOpenFileName, GetSaveFileName, OPENFILENAME
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|