Microsoft KB Archive/224302: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
(One intermediate revision by the same user not shown)
Line 72: Line 72:
<pre class="codesample">Option Explicit
<pre class="codesample">Option Explicit


Public Declare Function SetWindowLong Lib &quot;user32&quot; Alias _
Public Declare Function SetWindowLong Lib "user32" Alias _
   &quot;SetWindowLongA&quot; (ByVal hWnd As Long, ByVal nIndex As Long, _
   "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, _
   ByVal dwNewLong As Long) As Long
   ByVal dwNewLong As Long) As Long
   
   
Public Declare Function CallWindowProc Lib &quot;user32&quot; _
Public Declare Function CallWindowProc Lib "user32" _
   Alias &quot;CallWindowProcA&quot; (ByVal lpPrevWndFunc As Long, _
   Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, _
   ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, _
   ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, _
   ByVal lParam As Long) As Long
   ByVal lParam As Long) As Long
Line 83: Line 83:
Public Const GWL_WNDPROC = (-4)
Public Const GWL_WNDPROC = (-4)


Public Const WM_CONTEXTMENU = &amp;H7B
Public Const WM_CONTEXTMENU = &H7B


Global lpPrevWndProc As Long
Global lpPrevWndProc As Long
Line 101: Line 101:
                 ByVal wParam As Long, ByVal lParam As Long) As Long
                 ByVal wParam As Long, ByVal lParam As Long) As Long
   If Msg = WM_CONTEXTMENU Then
   If Msg = WM_CONTEXTMENU Then
       Debug.Print &quot;Intercepted WM_CONTEXTMENU at &quot; &amp; Now
       Debug.Print "Intercepted WM_CONTEXTMENU at " & Now
       gWindowProc = True
       gWindowProc = True
   Else ' Send all other messages to the default message handler
   Else ' Send all other messages to the default message handler
Line 136: Line 136:


</div>
</div>
&quot;Dan Appleman's Visual Basic Programmer's Guide to the Win32 API&quot; by Dan Appleman<br />
"Dan Appleman's Visual Basic Programmer's Guide to the Win32 API" by Dan Appleman<br />
<br />
<br />
Platform Software Development Kit (SDK) [http://msdn.microsoft.com/library/default.asp?URL=/library/psdk/portals/mainport.htm Online Help]
Platform Software Development Kit (SDK) [http://msdn.microsoft.com/library/default.asp?URL=/library/psdk/portals/mainport.htm Online Help]

Latest revision as of 13:42, 21 July 2020

Article ID: 224302

Article Last Modified on 7/13/2004



APPLIES TO

  • Microsoft Visual Basic 5.0 Learning Edition
  • Microsoft Visual Basic 6.0 Learning Edition
  • Microsoft Visual Basic 5.0 Professional Edition
  • Microsoft Visual Basic 6.0 Professional Edition
  • Microsoft Visual Basic 5.0 Enterprise Edition
  • Microsoft Visual Basic 6.0 Enterprise Edition



This article was previously published under Q224302

SUMMARY

When a user right clicks a textbox, the standard textbox popup menu appears. This article demonstrates how to suppress the textbox popup menu.

MORE INFORMATION

When a user right clicks a textbox, the textbox window receives a WM_CONTEXTMENU message. When the WM_CONTEXTMENU message is received, the textbox window shows the popup menu. A window procedure can capture all WM_CONTEXTMENU messages sent to a textbox window, thus suppressing the default popup window.

WARNING: This sample replaces the WindowProc of the text box window using a technique called a hook. Failure to unhook a window before its imminent destruction results in application errors, invalid page faults, and data loss. This is due to the fact that the new WindowProc function being pointed to no longer exists, but the window has not been notified of the change. Always unhook the sub-classed window upon unloading the sub-classed form or exiting the application. This is especially important while debugging an application that uses this technique within the Microsoft Visual Basic Development Environment. Pressing the END button on the toolbar or selecting End from the Run menu without unhooking will cause an invalid page fault and close Microsoft Visual Basic.

NOTE: This functionality is not available in any release of Microsoft Visual Basic for Applications (VBA) prior to Microsoft Office 2000.

Step-by-Step Example

  1. Start a new Visual Basic Standard EXE project. Form1 is created by default.
  2. Add two text boxes to Form1.
  3. Add a standard module to the project.
  4. Add the following code to the General Declarations section of Module1:

    Option Explicit
    
    Public Declare Function SetWindowLong Lib "user32" Alias _
       "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, _
       ByVal dwNewLong As Long) As Long
     
    Public Declare Function CallWindowProc Lib "user32" _
       Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, _
       ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, _
       ByVal lParam As Long) As Long
    
    Public Const GWL_WNDPROC = (-4)
    
    Public Const WM_CONTEXTMENU = &H7B
    
    Global lpPrevWndProc As Long
    Global gHW As Long
    
    Public Sub Hook()
       lpPrevWndProc = SetWindowLong(gHW, GWL_WNDPROC, _
       AddressOf gWindowProc)
    End Sub
    
    Public Sub Unhook()
       Dim temp As Long
       temp = SetWindowLong(gHW, GWL_WNDPROC, lpPrevWndProc)
    End Sub
    
    Public Function gWindowProc(ByVal hWnd As Long, ByVal Msg As Long, _
                     ByVal wParam As Long, ByVal lParam As Long) As Long
       If Msg = WM_CONTEXTMENU Then
          Debug.Print "Intercepted WM_CONTEXTMENU at " & Now
          gWindowProc = True
       Else ' Send all other messages to the default message handler
          gWindowProc = CallWindowProc(lpPrevWndProc, hWnd, Msg, wParam, _
             lParam)
       End If
    End Function
                        
  5. Add the following code to the General Declarations section of Form1:

    Private Sub Form_Load()
       gHW = Text1.hwnd
       Hook
    End Sub
    
    Private Sub Form_Unload(Cancel As Integer)
       Unhook
    End Sub
                        
  6. Run the project. Right-click Text1. No popup menu appears. Right-click Text2 and the standard popup menu appears.


REFERENCES

For additional information, please see the following articles in the Microsoft Knowledge Base:

168795 How To Hook Into a Window's Messages Using AddressOf

170570 How To Build a Windows Message Handler with AddressOf in VB


"Dan Appleman's Visual Basic Programmer's Guide to the Win32 API" by Dan Appleman

Platform Software Development Kit (SDK) Online Help

Keywords: kbhowto kbapi kbcodesnippet KB224302