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.
我正在编写一个与彭博终端通信的 VSTO Excel 插件。我需要能够为分数发送密钥,即 1/16 1/32 等。
我可以发送 1/2 1/4 和 3/4,因为它们是 ASCII 码 188 - 190。
我已经设置了一个 keyhooker 来查看是否可以捕获代码,但这些密钥没有注册。
有没有其他人设法做到这一点?
我已经设法找到解决问题的方法。看来您可以发送 Ctrl+F9 获得 1/8,Ctrl+F10 获得 1/32,Ctrl+F11 获得 1/64。
所以发送 4.125 你应该 sendkeys.send("4 ^{F9}") = 4 1/8 或 4.625 你应该 sendkeys.send("4 5^{F9}") = 4 5/8
希望这对其他人有帮助。