首页 /编程语言和算法/VB6/ASP
 VB6 用ClipBoard复制文字到剪切板
2023年11月22日 22:39

新建From1(窗体),新建Text1(TextBox),Command1、Command2(按钮CommandButton),代码:

Private Sub Command1_Click()
    '复制
    If Text1.SelText <> "" Then Clipboard.SetText Text1.SelText
End Sub

Private Sub Command2_Click()
    '剪切
    If Text1.SelText <> "" Then Clipboard.SetText Text1.SelText: Text1.SelText = ""
End Sub

Private Sub Form_Load()
    Text1.Text = "12345abc6789"
End Sub


 
全部回复(0)
首页 | 电脑版 |