SUB C.ButtonClick (NWin, Inx)
Sel = NWin * 100 + Inx
SELECT CASE Sel
CASE 0:
K$ = "O": MsgBox K$, "关闭", "关闭程序并重启你的计算机"
IF K$ = "O" THEN RUN "restart.com"
CASE 1:
K$ = "O": MsgBox K$, "恢复", "您想删除您现在的系统并恢复到以前的状态吗?"
IF K$ = "O" THEN RUN "Ghost.exe -clone,mode=pload,src=win.GHO:1,dst=1:1 -sure -rb"
CASE 2:
K$ = "O": MsgBox K$, "备份", "您想重新备份您的系统并覆盖以前的备份吗?"
IF K$ = "O" THEN RUN "ghost.exe -clone,mode=pdump,src=1:1,dst=C:\win.gho -z5 -fx -sure"
CASE 3:
K$ = "O": MsgBox K$, "退出", "退出并重启你的计算机"
IF K$ = "O" THEN RUN "restart.com"