Board logo

标题: [问题求助] [已解决]VBS如何自定义弹出对话框的样式 [打印本页]

作者: aqua    时间: 2009-8-15 19:29     标题: [已解决]VBS如何自定义弹出对话框的样式

本帖最后由 pcl_test 于 2016-8-7 19:49 编辑

请问VBS怎么写弹出窗口?
根据123.txt内容, 如123.doc  , 弹窗提示“是否复制123.doc”, 并且有7个按钮,  假设每个按钮都是将123.doc 复制到 e:\ 。 请问则么写 ??

vbs好像可以弹出消息吧, 不知是否可行?
谢谢啦
作者: defanive    时间: 2009-8-15 23:29

LZ,可能是我见识短浅,暂时纯批处理还做不到,也没有相应的第三方可以完成这个功能。。。
作者: rat    时间: 2009-8-16 03:54

只能用InternetExplorer.Application模拟
作者: canyuexiaolang    时间: 2009-8-16 06:58

呃……利用VB吧、可是这是批处理之家而不是VB
msgbox
作者: Seter    时间: 2009-8-16 07:01

7个按钮就自个画七八..
话说楼楼楼上某DEF大大不是用VBS做过全自动InternetExplorer.Application模拟的啊,给他玩玩?
作者: 基拉freedom    时间: 2009-8-16 16:45

xp中自带有 msg。用法参见:msg /?
_____________________版务操作_____________________

为了节省论坛版面资源和存储空间,删除了不必要的对命令帮助的全盘复制。
        —— by zqz0012005  20090817
_____________________版务操作_____________________

作者: newxso    时间: 2009-8-16 23:30

想制作有按扭的窗口,可以用HTA ,以下是一个示例,把以下代码复制到记事本,另存为 BrgoMenu.hta 即可。效果如图,既有背景音乐,又有活动文字说明。(以下代码中,&nbsp中的是中文字符,使用时请还原为英文的&,因为&加上nbsp的组合是表示空格,在网站上贴出来就是显示空格,不能显示此组合字,想获得如图效果,可以下载附件,其中还有子窗口代码供参考)想增加按扭或修改提示内容,可以用记事本来编辑以上代码即可。
  1. <title>备份还原快手2.0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: newxso</title>
  2. <SCRIPT LANGUAGE="VBScript">
  3. window.resizeTo 473, 190
  4. window.moveTo(screen.width-500)/2,(screen.height-400)/2
  5. Set objShell = CreateObject ("Wscript.Shell")
  6. Sub BackupScript
  7.          objShell.Run("%comspec% /c start brgo.exe 1"),0 ,TRUE
  8. Self.Close()
  9. End Sub
  10. Sub RestoreScript
  11.          objShell.Run("%comspec% /c start brgo.exe 2"),0 ,TRUE
  12. Self.Close()
  13. End Sub
  14. Sub BootScript
  15.          objShell.Run("%comspec% /c start BootSet.hta"),0 ,TRUE
  16. End Sub
  17. Sub HddScript
  18.       
  19.          objShell.Run("%comspec% /c start HddInfo.hta"),0 ,TRUE
  20. End Sub
  21. Sub HelpScript
  22.         objShell.Run("%comspec% /c notepad.exe 使用说明.txt"),0 ,TRUE
  23. End Sub
  24. </SCRIPT>
  25. <body bgcolor="#DCDCDC">
  26. <fieldset><legend>请用鼠标点击选择以下项目:</legend>
  27. <td valign="top"><font color="#D200D2" size="2">
  28. <marquee behavior="alternate" scrollamount="4">┏点击┓</marquee>
  29. &nbsp;<input id=runbutton class="button" type="button" value="备份系统" name="backup_button"
  30. onClick="BackupScript">
  31. <input id=runbutton class="button" type="button" value="还原系统" name="Restore_button"
  32. onClick="RestoreScript">
  33. <input id=runbutton class="button" type="button" value="引导模式" name="boot_button"
  34. onClick="BootScript">
  35. <input id=runbutton class="button" type="button" value="磁盘信息" name="hdd_button"
  36. onClick="HddScript">
  37. <input id=runbutton class="button" type="button" value="使用帮助" name="help_button"
  38. onClick="HelpScript">
  39. <BR>
  40. <BR>
  41. <BR>
  42. <td valign="top"><font color="#FF60AF" size="2">
  43. <marquee scrollamount="2" direction="left">背景音乐: 谭咏麟 - 无法不想你</marquee>
  44. <fieldset>
  45. <table border="0" cellspacing="1" width="100%">
  46. <td valign="top"><font color="#01B468" size="2">
  47. <marquee scrollamount="4" direction="left">备份还原快手 是一个可以在Windows下完成Ghost备份还原的程序 简单到你只需点一下鼠标即可&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Made: newxso QQ:453623262 Email:aximail@126.com</marquee>
  48. </table>
  49. <body scroll="no">
  50. <HTA:APPLICATION contextmenu="no" MaximizeButton="No" ICON="brgo.ico">
  51. <BGSOUND SRC="无法不想你.wma" Loop="-1">
  52. </BODY>
复制代码

作者: cfanlost    时间: 2009-8-17 09:27     标题: vbs弹窗

wscript.Echo "vbs弹窗内容"
作者: defanive    时间: 2009-8-17 12:36

2L看错了。。。

如果VBS的话,可以试用下HVScript,能快速制作窗口VBS。。。
作者: pcl_test    时间: 2016-8-7 20:35

本帖最后由 pcl_test 于 2016-8-7 20:50 编辑

http://www.bathome.net/redirect. ... 7540&ptid=40921
  1. WSH.echo CreateObject("WScript.Shell").Exec("mshta.exe ""about:<hta:application showintaskbar=no />" &_
  2.         "<title>提示</title><script>window.resizeTo(500, 150);" & _
  3.         "function f(a){document.getElementById('info').innerText=a.value;" & _
  4.         "new ActiveXObject('Scripting.FileSystemObject').GetStandardStream(1).Write(a.value.replace(/\D+/, ''));" & _
  5.         "setTimeout(function(){window.close()}, 1000)}</script>" & _
  6.         "<body style='text-align:center'><div><font style='color:#FF0000;'>点击其中一个按钮试试</font><br>" & _
  7.         "<input type='button' value='按钮1' onclick='f(this)'>&nbsp;&nbsp;" & _
  8.         "<input type='button' value='按钮2' onclick='f(this)'>&nbsp;&nbsp;" & _
  9.         "<input type='button' value='按钮3' onclick='f(this)'>&nbsp;&nbsp;" & _
  10.         "<input type='button' value='按钮4' onclick='f(this)'>&nbsp;&nbsp;" & _
  11.         "<input type='button' value='按钮5' onclick='f(this)'>&nbsp;&nbsp;" & _
  12.         "<input type='button' value='按钮6' onclick='f(this)'>&nbsp;&nbsp;" & _
  13.         "<input type='button' value='按钮7' onclick='f(this)'></div><br><div id='info'></div></body>""").StdOut.ReadAll
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2