|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| commdlg.h
| Unicode
| No
| Platform Notes
| None
|
|
|
CDN_SHAREVIOLATION
[New - Windows NT]
The CDN_SHAREVIOLATION notification message is sent by an Explorer-style Open or Save As common
dialog box when the user clicks the OK button and a network sharing violation
occurs for the selected file. Your OFNHookProc hook procedure receives this message in the form of a WM_NOTIFY message.
CDN_SHAREVIOLATION
lpon = (LPOFNOTIFY) lParam;
Parameters
lpon
Pointer to an OFNOTIFY structure. The pszFile member of this structure points to the name of the file that had the sharing
violation.
The OFNOTIFY structure contains an NMHDR structure whose code member indicates the CDN_SHAREVIOLATION notification code.
Return Values
The return value indicates how the dialog box should handle the sharing
violation.
If the hook procedure returns zero, the dialog box displays the standard
warning message for a sharing violation.
To prevent the display of the standard warning message, return a nonzero value
from the hook procedure and call the SetWindowLong function to set one of the following DWL_MSGRESULT values:
OFN_SHAREFALLTHROUGH
| Causes the dialog box to return the filename without warning the user about
the sharing violation.
| OFN_SHARENOWARN
| Causes the dialog box to reject the filename without warning the user about
the sharing violation.
|
Remarks
The system sends this notification only if the dialog box was created using
the OFN_EXPLORER value.
The system sends this notification only if the the OFN_SHAREAWARE value was
not specified when the dialog box was created.
See Also
GetOpenFileName, GetSaveFileName, NMHDR, OFNHookProc, OFNOTIFY, OPENFILENAME, SetWindowLong, WM_NOTIFY
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
|