首页 > 编程 > VBScript > 正文

VBS实现将字符串写入剪切板的实现代码

2020-07-26 11:49:45
字体:
来源:转载
供稿:网友
函数代码:
复制代码 代码如下:

Sub CopyString(s)
Set forms=WScript.CreateObject("forms.form.1")
Set textbox=forms.Controls.Add("forms.textbox.1").Object
With textbox
.multiline=True
.text=s
.selstart=0
.sellength=Len(.text)
.copy
End With
End Sub

'调用
复制代码 代码如下:

CopyString "武林网 www.VeVB.COm"


完整测试代码
复制代码 代码如下:

Sub CopyString(s)
Set forms=WScript.CreateObject("forms.form.1")
Set textbox=forms.Controls.Add("forms.textbox.1").Object
With textbox
.multiline=True
.text=s
.selstart=0
.sellength=Len(.text)
.copy
End With
End Sub
CopyString "武林网 www.VeVB.COm"
msgbox "ok"
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表