• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

VB6 help

Here is the simplest way:

1) First, make your own menu, using the menu editor. Assume your menu is called "mnuTest".

2) In the Mouse-down event of the text box use the code:

Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then
Text1.Enabled = False
PopupMenu mnuTest
Text1.Enabled = True
Text1.SetFocus
End If


End Sub


There are better ways to do this, but this is the simplest. If you want to get rid of the right menu altogether, you'll need to use a few API calls.



 
Back
Top