NDde 实现 DDE 服务器,Excel DDE 在服务器建议时无法更新
那里 我使用 NDde 创建一个 DDE 服务器来支持 EXCEL 客户端, 您使用计时器定期设置服务器中项目的值, 为什么Excel在项目值改变时不自动改变? 但是当我在单元格中输入 App|Topic!'item' 时,第一次会显示数据 为什么 ?有什么想法吗?
问候, 阿吉琴
theres
I use NDde to create a DDE Server to support EXCEL client,
U use a timer to set item's value in the server periodically,
why Excel not change automatically when the item value changed ?
But the first time the data will display when I input App|Topic!'item' in the cell
Why ? any idea ?
Regards,
agichen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请按照下载中包含的示例进行操作。您将看到必须重写
DdeServer.OnAdvise
才能发送数据,并且必须使用定期调用DdeServer.Advise
来通知客户端。Follow the examples included in the download. You will see that
DdeServer.OnAdvise
must be overriden to send data and that periodic calls toDdeServer.Advise
must be used to notify clients.