Microsoft Windows 95 pop up menu 
Author Message
 Microsoft Windows 95 pop up menu

I want to know if there is a way to disable the pop up menu that windows
will show when the user right clicks over a text box.  I have another menu
that I would like to pop up, but the MS menu always comes up first and then
mine.  Is there an API call or something that can disable that menu from
comming up.

Thanks



Tue, 14 Nov 2000 03:00:00 GMT  
 Microsoft Windows 95 pop up menu


Quote:

>I want to know if there is a way to disable the pop up menu that windows
>will show when the user right clicks over a text box.  I have another menu
>that I would like to pop up, but the MS menu always comes up first and then
>mine.  Is there an API call or something that can disable that menu from
>comming up.

This works.  Don't ask how.

Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single,
Y As Single)
    If Button = 2 Then
        Text1.Enabled = False
        Text1.Enabled = True
        PopupMenu MyMenu
    End If
End Sub

Lee Weiner
weiner AT fuse DOT net



Tue, 14 Nov 2000 03:00:00 GMT  
 Microsoft Windows 95 pop up menu

Well this may be a cheesy way, but it works.

    frmChild.PopupMenu MDIMain.mnuPopUp, vbPopupMenuRightButton, , ,
MDIMain.m{*filter*}tail
    SendKeys "%" 'get rid of system context menu

--
Shawn
-
Software Developer
Maxim Group/BellSouth Communication Systems

http://www.*-*-*.com/ ~shawnlee/
Borg Pursuit Screen Saver for Windows
"I am Flanders of Borg. Prepare to be assimilly-limilly-lated"

Quote:

>I want to know if there is a way to disable the pop up menu that windows
>will show when the user right clicks over a text box.  I have another menu
>that I would like to pop up, but the MS menu always comes up first and then
>mine.  Is there an API call or something that can disable that menu from
>comming up.

>Thanks



Tue, 14 Nov 2000 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Newbie Q about '95 Pop-up Menus

2. Windows 95 System Menu and PopUp Menus PROBLEM

3. Microsoft Windows 95 don't know calculation

4. build a search function similar to Microsoft Help in Windows 95

5. Build a search function similar to Microsoft Help in Windows 95

6. Interface to Microsoft Fax (Windows 95 )

7. build a search function similar to Microsoft Help in Windows 95

8. Microsoft Windows 95 don't know calculation

9. Microsoft Windows 95 don't know calculation

10. Windows 95 B, Setup Wizard Issues Setup.EXE on Windows 95 A

11. Windows 95 B, Setup Wizard Issues Setup.EXE on Windows 95 A

12. Add application to Windows 95 Explorer Right Mouse Menu

 

 
Powered by phpBB® Forum Software