Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Private Shared Function SendDlgItemMessage(ByVal hDlg As IntPtr, _
ByVal nIDDlgItem As Integer, _
ByVal Msg As UInteger, _
ByVal wParam As UInteger, _
ByVal lParam As UInteger) As IntPtr
End Function
VB Signature:
Private Declare Function SendDlgItemMessage Lib "user32" (ByVal hDlg As IntPtr, _
ByVal nIDDlgItem As Integer, _
ByVal Msg As UInteger, _
ByVal wParam As UInteger, _
ByVal lParam As UInteger) As IntPtr
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
VB:
Sub ClickSaveBoxNoButton()
'In this example, we've opened a Notepad instance, entered some text, and clicked the 'X' to close Notepad.
'Of course we received the 'Do you want to save...' message, and we left it sitting there. Now on to the code...
'
'Note: this example also uses API calls to FindWindow, GetDlgItemText, and SetActiveWindow.
' You'll have to find those separately.
'Find the dialog box (no need to find a "parent" first)
'classname is #32770 (dialog box), dialog box title is Notepad
Dim theDialogBoxHandle As IntPtr = Nothing
Dim theDialogBoxClassName As String = "#32770"
Dim theDialogBoxTitle As String = "Notepad"
Dim theDialogItemId As Integer = Convert.ToInt32("0xFFFF", 16)
Dim theDialogTextHolder As New StringBuilder(1000) 'hardcoding capacity - represents maximum text length
Dim theDialogText As String = String.Empty
Dim textToLookFor As String = "Do you want to save the changes?"
Dim isChangeMessage As Boolean = False
Dim theNoButtonHandle As IntPtr = Nothing
Dim theNoButtonItemId As Integer = vbNo 'actual Item ID = 7
Dim theClickMessage As UInteger = Convert.ToUInt32("0x00F5", 16) '= BM_CLICK value
Dim wParam As UInteger = 0
Dim lParam As UInteger = 0
'Get a dialog box described by the specified info
theDialogBoxHandle = FindWindow(theDialogBoxClassName, theDialogBoxTitle)
If theDialogBoxHandle <> IntPtr.Zero Then 'a matching dialog box was found, so continue
'then get the text
GetDlgItemText(theDialogBoxHandle, theDialogItemId, theDialogTextHolder, theDialogTextHolder.Capacity)
theDialogText = theDialogTextHolder.ToString
End If
'Make sure it's the right dialog box, based on the text we got.
isChangeMessage = Regex.IsMatch(theDialogText, textToLookFor)
If (isChangeMessage) Then
'Set the dialog box as the active window
SetActiveWindow(theDialogBoxHandle)
'And, click the No button
SendDlgItemMessage(theDialogBoxHandle, theNoButtonItemId, theClickMessage, wParam, lParam)
End If
End Sub
Alternative Managed API:
Do you know one? Please contribute it!
The SendDlgItemMessage API
3/4/2012 8:30:04 PM - -108.75.26.85
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
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).