Message.show() 在另一台计算机桌面上?
有两台计算机通过集线器建立通信。
如果计算机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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用外部
msg
程序或网络发送
。前者是终端服务器套件的一部分;第二个是在 Windows XP 中内置的,但在更高版本的 Windows 中被删除。您可以使用进程。开始运行外部程序。
You can use the external
msg
program ornet 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.You can use Process.Start to run an external program.