VB6 使用数据控件
大家好,只是想让你们问一些关于我的代码的问题...我的数据库中有 5 条带有 UserID 的记录A02-0005
...我想使用 DataControl 获取所有内容并分别显示到文本框中...我的问题是我只获得一组记录,并且何时我单击 DataControl 的 NextButton,没有任何反应。在设计时,我设置了DataControl的DatabaseName、RecordSource和RecordSetType...那么问题可能出现在哪里?我正在使用 VB6...提前致谢。
Hello guys, just want you to ask something about my code... I have 5 records n my database with the UserID of A02-0005
... I want to get it all using DataControl and display into TextBoxes respectively... My problem is I get only a single set of record and when I click the NextButton of DataControl, nothing happens. At the design time, I'd set the DatabaseName, RecourdSource, and RecordSetType of my DataControl... Where then the problem possibly occurs? I am using VB6... Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题在于 Seek 方法。该方法采用另一个名为 SeekOption 的参数,默认情况下它只会查找第一个匹配项。
相反,您可以在 Recordset 上使用 Find 方法,如下所示。您需要指定搜索条件以及记录集中的开始搜索位置。
最后,如果您希望文本框在用户单击数据控件时自动更新,那么您只需设置 DataSource 和 DataSource 即可。设计时文本框控件的 DataField 属性。
The problem here is with the Seek method. The method takes another argument called SeekOption and by default it will just find the first match.
Instead you could use the Find method on the Recordset as follows. You need to specify your search criteria and also where in the recordset to begin searching from.
Finally if you want your text boxes to update automatically when the user clicks the data control then you can just set the DataSource & DataField properties of the text box controls at design time.