在vb里谁知道shift,ctrl和alt,F1怎么表示?

前端之家收集整理的这篇文章主要介绍了在vb里谁知道shift,ctrl和alt,F1怎么表示?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
SHIFT + 
CTRL ^ 
ALT % 
F1 {F1} 
答案补充
这就是在代码中 触发这些按键用的
答案补充
晕,这就是组合键时用的。
答案补充
Option Explicit
  Private Sub Form_Load()
  Dim x
  x = Shell("C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE",vbNormalFocus)
  waittime (2)
  SendKeys "+3",True
  waittime (2)
  SendKeys "^f",True
  SendKeys "^s",True
  waittime (2)
  End Sub
  Private Sub waittime(delay As Single)
  Dim starttime As Single
  starttime = Timer
  Do Until (Timer - starttime) > delay
  Loop
  End Sub
以上代码呼出WORD,你点两下就会出现SHIFT+3,ctrl+f的效果
原文链接:https://www.f2er.com/vb/259345.html

猜你在找的VB相关文章