MSGBOX 在 WSH/VBS 中的位置

发布于 2024-09-04 04:29:56 字数 312 浏览 4 评论 0原文

这是我的下一个问题,我希望有人可以帮助我:-)

是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你另情深 2024-09-11 04:29:56

单独使用 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.

橙味迷妹 2024-09-11 04:29:56

这是可能的。以下是代码示例的链接(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文