MSGBOX 在 WSH/VBS 中的位置
这是我的下一个问题,我希望有人可以帮助我:-)
是否可以在 wsh/vbs 中放置 msgbox?
替代文本 http://www.4freeimagehost.com/uploads/a9b04cde0527.jpg
我每次都需要在前台使用 msgbox。我知道如何定位输入框,但不知道如何定位消息框。
感谢您的帮助。
问候, 马蒂亚斯
here is my next question and i hope some one can help me :-)
Is it possible to position a msgbox in wsh/vbs?
alt text http://www.4freeimagehost.com/uploads/a9b04cde0527.jpg
I need the msgbox everytime in the foreground. I know that how to position a inputbox, but not a msgbox.
Thanks for help.
Greetings,
matthias
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单独使用 VBS 无法通过 WSH MsgBox 做到这一点。
InputBox
是唯一允许您设置位置的内置对话框函数。您可以使用
WshShell.Popup
并使其在几秒钟后消失,但它会居中。编辑;这是 使用 IE 的东西。
You cannot do that with a WSH MsgBox using VBS alone.
InputBox
is the only build in dialog function that allows you to set a position.You can use a
WshShell.Popup
and make it disappear after a few seconds, however it will be centered.Edit; here is something using IE.
这是可能的。以下是代码示例的链接(VB5,因此它应该适合您):
http://support .microsoft.com/kb/180936
基本上,您设置了一个挂钩,以便您的应用程序在您弹出消息框时收到通知。在处理程序内,您将消息框移动到屏幕上的所需位置。
This is possible. Here is a link to a code sample (VB5, so it should work for you):
http://support.microsoft.com/kb/180936
Basically, you set up a hook so that your application gets a notification whenever you pop up a message box. Inside the handler, you move the message box to the desired location on the screen.