'完整代码给你,你研究一下
Dim ps,mt
Set ms=CreateObject("wscript.shell")
ps=InputBox("输入密码","运行软件")
If ps="123456" Then
MsgBox "回答正确!"
mt=InputBox("记事本请输入1;"& vbcrlf & "计算器请输入2;" & vbcrlf & "运行 英雄联盟 请输入3.","运行项目")
Select Case mt
Case 1
ms.run "notepad"
Case 2
ms.run "C:\WINDOWS\system32\calc.exe"
Case 3
ms.run "F:\英雄联盟\TCLS\client.exe"
Case else
MsgBox "无效输入!"
End select
Else
MsgBox "回答错误!"
End if