VB中复制-粘贴-剪切键实现

Posted 温故余学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VB中复制-粘贴-剪切键实现相关的知识,希望对你有一定的参考价值。

If Me.ActiveControl.GetType.BaseType.ToString = "System.Windows.Forms.TextBoxBase" Then
 Windows.Forms.SendKeys.Send("^{X}")
End If
If Me.ActiveControl.GetType.BaseType.ToString = "System.Windows.Forms.TextBoxBase" Then
 Windows.Forms.SendKeys.Send("^{C}")
 End If
If Me.ActiveControl.GetType.BaseType.ToString = "System.Windows.Forms.TextBoxBase" Then
Windows.Forms.SendKeys.Send("^{V}")
End If

Clipboard.SetText(粘贴文本信息‘)
Clipboard.GetText(获取文本信息‘)

 

以上是关于VB中复制-粘贴-剪切键实现的主要内容,如果未能解决你的问题,请参考以下文章

vb如何做剪切、复制、粘贴按钮

VB在textbox中怎么禁止右键菜单中的复制粘贴功能

VB如何利用剪贴板复制、粘贴文件,用到啥API

js禁用右键菜单选中复制剪切粘贴

VB中如何实现复制粘贴?

QT读取剪切板内容-实现复制粘贴文本和图片