在列表框中搜索指定字符串 VB6
我有一个名为 lstSerial 的列表框和一个名为 txtSerials 的文本框。我想要做的是在 lstSerial 中搜索在 txtSerials 中输入的字符串。我在 Microsoft Visual Basic 6.0 中使用 VB6,但查找文档却遇到了困难。
谢谢。
I have a listbox called lstSerial and a textbox called txtSerials. What I want to do is search lstSerial for the string that's entered in txtSerials. I'm using VB6 in Microsoft Visual Basic 6.0, and I'm having a terrible time finding documentation.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
@AlexK 的答案在技术上是正确的 - 是的 - 它会起作用,但这不是首选的方法。为此目的有一个 API 调用:
因此您想要执行此操作:
来源
@AlexK's answer is technically correct - yes - it will work, but it's not the preferred way to go. There is an API call for this very purpose:
So you want to do this:
Source
文件; http://msdn.microsoft.com/en-我们/库/aa267225(v=VS.60).aspx
Docs; http://msdn.microsoft.com/en-us/library/aa267225(v=VS.60).aspx