当前位置:DOS资源站资料中心VBS脚本 → 用VBS写网吧游戏公告

用VBS写网吧游戏公告

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2008-5-4 3:50:08

dim objshell
Set objShell = CreateObject("Wscript.Shell") 
intMessage = Msgbox("点是进入游戏" & vbCrlf & "点否访问游戏更新信息" & vbCrlf & "点取消退出" & vbCrlf & "自定义",3 + 64, "DOS资源站") 
If intMessage = vbYes Then 
    objShell.Run"窗口化.exe",0
Else 
    End if
If intMessage = vbNo Then
    objShell.Run("http://www.cmdos.net") 
Else 
    End if
If intMessage = vbCancel Then
    End If
wscript.quit