Is it possible to make a right-click menu? Like when you right-click a file and the menu comes up with "save, delete" etc.
BTW i'm using VB 6.0
Any help would be much appreciated!
Its real simple, create a menu and all you have to do is
so as an example i have a Edit menu and on my RichTextBox control i have the following code so users can click the right button and use the edit tools.Code:Me.PopupMenu mnunamehere
Regards, PaulCode:Private Sub RTB_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single) If Button = vbRightButton Then Me.PopupMenu mnufile End If End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks