VB输入字符
DimsAsLongDimtAsLongDimrAsLongt=Len(copy_txt.Text)MsgBoxtTim=5'Tim=Tim-1Label6.Captio...
Dim s As Long
Dim t As Long
Dim r As Long
t = Len(copy_txt.Text)
MsgBox t
Tim = 5
'Tim = Tim - 1
Label6.Caption = "将在," & Tim & " 秒后输入..."
If Tim <= 0 Then
s = 1
If s < t Then
r = Mid("copy_txt.Text", s - 1, s + 1)
MsgBox r
VBA.SendKeys r
'VBA.SendKeys Mid("copy_txt.Text", 4, 6) 截取4 6位置之间的字符
'VBA.SendKeys copy_txt.Text
Label6.Caption = "双击选择要输入的内容..."
s = s + 1
End If
Timer2.Enabled = False
End If
以上代码是一个按钮调用时间控件,一个一个将copy_txt.Text字符输入到文本中,可是输出不了,帮我看下啊,到底要怎么改啊?
是文本,比如记事本,地址栏,密码输入框之类的。 展开
Dim t As Long
Dim r As Long
t = Len(copy_txt.Text)
MsgBox t
Tim = 5
'Tim = Tim - 1
Label6.Caption = "将在," & Tim & " 秒后输入..."
If Tim <= 0 Then
s = 1
If s < t Then
r = Mid("copy_txt.Text", s - 1, s + 1)
MsgBox r
VBA.SendKeys r
'VBA.SendKeys Mid("copy_txt.Text", 4, 6) 截取4 6位置之间的字符
'VBA.SendKeys copy_txt.Text
Label6.Caption = "双击选择要输入的内容..."
s = s + 1
End If
Timer2.Enabled = False
End If
以上代码是一个按钮调用时间控件,一个一个将copy_txt.Text字符输入到文本中,可是输出不了,帮我看下啊,到底要怎么改啊?
是文本,比如记事本,地址栏,密码输入框之类的。 展开
5个回答
展开全部
txtA = copy_txt.Text
for i = 1 to len(txtA)
VBA.Sendkeys mid(txtA,i,1)
sleep(1000) '停一秒
next i
是个例子.
for i = 1 to len(txtA)
VBA.Sendkeys mid(txtA,i,1)
sleep(1000) '停一秒
next i
是个例子.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把程序 发给我
我给你检查
现在这样根本看不出来的zsq6@chinaren.com
我给你检查
现在这样根本看不出来的zsq6@chinaren.com
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将copy_txt.Text字符输入到文本中?
文本是指文件吗?
文本是指文件吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的代码应该在Timer事件中,如果是1秒间隔的话,5秒倒数后应该执行sendkeys代码,但你的Tim=Tim-1被注释掉了,请问还能倒计时吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询