Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我到处搜索了一个允许我连接到 DDE 服务器的类。虽然我知道 DDE 已经过时并且存在更好的方法,但它们不适用于我想要连接的内容。
我发现这显然适用于 QT 3,不幸的是我缺乏将其更新到 QT 4 的差异知识。
有人有更新版本、更新时间或其他解决方案吗?
我知道这很古老,但是对于到达这里的人,您需要对该代码进行一些小的更改:
void DDEComm::ddeDisconnect() { DdeDisconnect(hConv); DdeUninitialize(pidInst); connStatus = false; }
应该成为
void DDEComm::ddeDisconnect() { DdeDisconnect(hConv); DdeUninitialize(pidInst); connStatus = false; pidInst = 0; }