myscript.vbs
来自「这是一个数字图像处理的matlab仿真程序」· VBS 代码 · 共 17 行
VBS
17 行
Dim MyVar, Input
MyVar = 0
MyVar = MyVar + 1
MyVar = MyVar + 1
MyVar = MyVar + 1
MyVar = MyVar + 1
MyVar = MsgBox ("MyVar is now " & MyVar, 65, "pssssssssst......")
Application.SetText = "Now you can set the text HERE by script alone."
Input = InputBox("Enter your name")
DO
Application.SetText = "You entered: " & CHR(13) & CHR(10) & Input
Input = InputBox("Now enter something else:")
IF Input = "" Then Exit Do
LOOP
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?