voy mejorando. Ahora tengo problemas con copiar, cortar y pegar.
El siguiente código me selecciona bien el texto, pero me da error al querer copiar o cortar: Ayuda please!!!
Private Sub mnuCopiar_Click()
Clipboard.Clear
Clipboard.SelText: text1.SelText
text1.SetFocus
End Sub
Private Sub mnuCortar_Click()
Clipboard.SelText: text1.SelText
text1.SelText = ""
text1.SetFocus
End Sub
Private Sub mnuPegar_Click()
text1.SelText = Clipboard.GetText()
text1.SetFocus
End Sub