Message.show() 在另一台计算机桌面上?

发布于 2024-11-14 21:29:49 字数 222 浏览 2 评论 0原文

有两台计算机通过集线器建立通信。

如果计算机A上存在MyAPP.exe,假设我想在发生MyAPP.exe错误时通知计算机B上的消息窗口(弹出窗口)。我可以在计算机 B 桌面上使用 Message.Show() 显示警报消息吗?我当前使用“远程桌面连接”远程计算机 A。这就是我想要这个功能的原因。

感谢您的回复和评论。

使用 WindowsXP 和 C#2.0。

There are two computers established communication via a hub.

If MyAPP.exe exist on Computer A, Assume I want to notify a message window (Pop-up window) on Computer B if MyAPP.exe error occurred. Could I show alert message with Message.Show() on computer B desktop? I remote computer A with 'Remote Desktop Connection' currently. That's why I want the feature.

Appreciated for your reply and comment.

WindowsXP and C#2.0 used.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

转身泪倾城 2024-11-21 21:29:49

您可以使用外部 msg 程序或 网络发送。前者是终端服务器套件的一部分;第二个是在 Windows XP 中内置的,但在更高版本的 Windows 中被删除。

msg username /server:computerA "There was an error!"

您可以使用进程。开始运行外部程序。

You can use the external msg program or net send. The former is part of the Terminal Server suite; the second is built in Windows XP, but was removed in later versions of Windows.

msg username /server:computerA "There was an error!"

You can use Process.Start to run an external program.

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