欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-04 20:32:42
函数代码: 复制代码 代码如下: sub copystring(s) set forms=wscript.createobject("forms.form.1") set...
函数代码:
复制代码 代码如下:

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"