dim wshset wsh=CreateObject("Wscript.Shell")wsh.sendkeys "456"
小键盘上的数字与主键盘上的数字有什么区别
你是想通过sendkeys发送中文吧很可惜,sendkeys不是通过发送键盘键值来模拟键盘的sendkeys是通过发送字符串来模拟键盘,所以在sendkeys中大键盘的1与小键盘的1是相同的可以使用以下方法
dim wsh,oieSet oie=CreateObject("InternetExplorer.Application")Set wsh=CreateObject("WScript.Shell")oie.Navigate "about:blank"oie.Visible=0oie.document.parentwindow.clipboardData.SetData "text","中国"wsh.sendkeys "^v"
数字和字母可以直接发的
dim wsh
set wsh=CreateObject("Wscript.Shell")
wsh.sendkeys "你要的数字"
保存为.vbs格式
他是数据来的
用简板