RichText.visuble = false
PopupMenu
RighText.Visuble = true

解决方案 »

  1.   

    不行也!!我把这三句话放在form_load里面不行也!!
    能不能讲详细点!!
    谢谢!!
      

  2.   

    RichTextBox自身没有右键菜单!
    你需要自己在MouseDown中用PopupMemu方法弹出自己的菜单
      

  3.   

    RichTextBox1.AutoVerbMenu = True 即可!!!!!!
      

  4.   

    在RichTextBox1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)的事件中加入以下代码:
         If Button = 2 Then
             PopupMenu mnuName '你的菜单名
         End If!!!!!!!我刚才试过了,正确.