|
|
|
Elsewhere in the TipBank we show how you can display a custom popup menu on a TextBox control by subclassing the WM_CONTEXTMENU message that Windows sends the control when the user right-clicks on it. If you don't like to resort to subclassing for such an easy job, you can use the following tip, taken from Microsoft Knowledge Base: |
Even better, it turns out that you don't even need the LockWindowUpdate API function to avoid the TextBox control enter the "grayed" state, provided that you re-arrange the above statements and ensure that the TextBox control misses the opportunity to display the default Edit menu: |
Click here to copy the following block | Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, _ Y As Single) If Button = vbRightButton Then Text1.Enabled = False DoEvents Text1.Enabled = True PopupMenu mnuFile End If End Sub |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|