在VC中读取RichTextBox++
我必须从 VC++ 中的 RichTextBox
中逐个字符读取文本。 我需要像 getch
或 getche
这样的函数。
I have to read the text character by character from a RichTextBox
in VC++. I need a function like getch
or getche
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在用户键入文本时阅读文本,则必须附加“向上/向下键”或“文本已更改”事件(取决于您的别有用心)。
If you want to read the text while it is typed by the user, you'll have to attach to the "key up/down" or "text changed" events (depending on your ulterior motives).