|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| commdlg.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
FILEOKSTRING
An Open or Save As dialog box sends the FILEOKSTRING registered message to
your hook procedure when the user specifies a filename and clicks the OK button.
The hook procedure can accept the filename and allow the dialog box to close, or
reject the filename and force the dialog box to remain open.
For Explorer-style Open and Save As dialog boxes, this message has been
superseded by the CDN_FILEOK notification message.
MessageID = RegisterWindowMessage(FILEOKSTRING);
wParam = 0;
lpofn = (LPOPENFILENAME) lParam;
Parameters
lpofn
Pointer to an OPENFILENAME structure. The lpstrFile member of this structure contains the drive, path, and filename specified by
the user.
Return Values
If the hook procedure returns zero, the Open or Save As dialog box accepts the
specified filename and closes.
If the hook procedure returns a nonzero value, the Open or Save As dialog box
rejects the specified filename and remains open.
Remarks
The hook procedure must specify the FILEOKSTRING constant in a call to the RegisterWindowMessage function to get the identifier for the message sent by the dialog box.
See Also
CDN_FILEOK, OPENFILENAME, RegisterWindowMessage
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
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
|