如何发送“{”或“}” VB 2010中通过发送密钥方法进行签名

发布于 2024-12-06 00:16:08 字数 153 浏览 0 评论 0原文

我想将 { 和 } 符号发送到 Visual Basic 2010 中的活动窗口。但问题是,当我们发送像“Backspace”这样的键时,我们将其发送为“{BS}”。因此它还包含 { & } 标志。 因此,当我们发送 { 和 } 标志时,什么也没有发生。任何人都可以帮助我......

I want to send { and } signs to the Active window in Visual Basic 2010.But the problem is when we send a key like "Backspace" we send it as "{BS}".So it also contains the { & } signs.
Therefore when we send { and } signs nothing happen.Anyone help me...

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

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

发布评论

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

评论(1

恬淡成诗 2024-12-13 00:16:08

来自

http://msdn.microsoft.com/en-us/library/system .windows.forms.sendkeys.aspx

加号 (+)、脱字号 (^)、百分号 (%)、波形符 (~) 和
括号 () 对 SendKeys 有特殊含义。指定其中之一
将这些字符括在大括号 ({}) 内。例如,要
指定加号,使用“{+}”。 要指定大括号字符,请使用
“{{}”和“{}}”。
括号 ([ ]) 对 SendKeys 没有特殊含义,
但您必须将它们括在大括号中。在其他应用中,括号
确实有一个特殊的含义,当动态数据时可能很重要
发生交换(DDE)。

基本上,您需要将大括号加倍以转义它们,例如

{{}

发送 { 左大括号,并

{}} 

发送右大括号。乍一看可能并不明显,但这只是将大括号字符括在大括号内。这与其他转义序列一致,例如在 C/C#/etc 中使用 \\ 来指示文字 \ 而不是字符串格式化字符。

From

http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx

The plus sign (+), caret (^), percent sign (%), tilde (~), and
parentheses () have special meanings to SendKeys. To specify one of
these characters, enclose it within braces ({}). For example, to
specify the plus sign, use "{+}". To specify brace characters, use
"{{}" and "{}}".
Brackets ([ ]) have no special meaning to SendKeys,
but you must enclose them in braces. In other applications, brackets
do have a special meaning that might be significant when dynamic data
exchange (DDE) occurs.

Basically, you need to double up the braces to escape them, Like

{{}

to send a { opening brace, and

{}} 

to send a closing brace. It may not be obvious at first glance, but that's just enclosing a brace character within braces. This is consistent with other escape sequences, such as using \\ in C/C#/etc to indicate a literal \ instead of a string formatting character.

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