首页 > 编程 > VBScript > 正文

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

2019-10-26 18:05:06
字体:
来源:转载
供稿:网友
函数代码:
复制代码 代码如下:

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.jb51.net"


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

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.jb51.net"
msgbox "ok"

您可能感兴趣的文章:

VBS访问剪贴板的几种方法小结
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选