Hi
I have the below code for a rich text box but i want to add one of theses menus that i have seen in a different program. Please see the kind of menu i want in the print screen image attachment. I have looked on VB and can't seem to find it but i can find several other menu options. What is it called?Attachment 96179
I have the below code for a rich text box but i want to add one of theses menus that i have seen in a different program. Please see the kind of menu i want in the print screen image attachment. I have looked on VB and can't seem to find it but i can find several other menu options. What is it called?Attachment 96179
Code:
Private Sub rtbInput_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles rtbInput1.Enter, _
rtbInput2.Enter, _
rtbInput3.Enter, _
rtbInput4.Enter
Dim rtb As RichTextBox
rtb = DirectCast(sender, RichTextBox)
Call SelectText(rtb)
End Sub