Desktop Functions: Smart Device Functions:
|
SHMessageBoxCheck (shlwapi)
MSDN: C# Signature:/* The SHMessageBoxCheck() function is a Windows Shell API function that displays a custom messagebox with a "never ask me again" check box. When the user checks the checkbox, the dialog never shows up again. The shell API .dll exports this function by ordinal only. The entrypoint is ordinal 185 for ASCII and 191 for unicode. */ [DllImport("shlwapi.dll", EntryPoint="#185", ExactSpelling=true, PreserveSig=false)] public static extern int SHMessageBoxCheck(
[In] IntPtr hwnd, VB Signature:
Declare Function SHMessageBoxCheck Lib "shlwapi.dll" (TODO) As TODO User-Defined Types:None. Alternative Managed API:Do you know one? Please contribute it! Notes:/* We use the Windows Shell function SHMessageBoxCheck, so we have to define this parallel enum of the definitions in winuser.h. */ public enum MessageBoxCheckFlags : uint {
MB_OK = 0x00000000, } The Windows Shell (Explorer) stores your preference in the following registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain Tips & Tricks:This blog (Raymond Chen, Microsoft) contains discussion about SHMessageBoxCheck in the user-added comments: http://blogs.msdn.com/oldnewthing/archive/2005/04/29/412577.aspx Please add some! Sample Code:/* This code displays a dialog box with a "Don't show me this dialog again" checkbox and an OK button. In normal circumstances, result will always be 0 on return. */ int result; try {
result = SHMessageBoxCheck( } catch( Exception e ) { // Note that the only exceptions we can get here are inter-op exceptions, I think.
result = -1; } if( result == -1 ) { // The dialog didn't show up, so do some alternate action here. } Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|