在运行时向列表视图添加项目
当我使用以下方法向列表视图添加新值时:
Set lstView = ListView(0).ListItems.Add(, , txtName)
lstView.ListSubItems.Add , , txtValue
lstView.Refresh
唯一的问题是这只在列表视图中显示一个空白的新行,知道如何正确更新它吗?
通常我使用记录集,因此只需清除然后重新填充数据,但我需要用户能够向列表视图添加条目。 然后,只有在用户完成修改列表视图后,我才会循环浏览列表视图,将值添加到数据库中。
预先感谢您的任何帮助。
When I add new values to a listview using :
Set lstView = ListView(0).ListItems.Add(, , txtName)
lstView.ListSubItems.Add , , txtValue
lstView.Refresh
The only problem is that this only displays a blank new line in the listview, any idea how to update it correctly?
Normally I am using a recordset so simply clear then repopulate the data but I need the user to be able to add entries to the listview. I will then cycle through the listview adding the values tot he DB only once the user has finished amending the listview.
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 ListView 的 .View 属性设置为“Report”,下面将向控件添加几行并设置子项文本。
Assuming the .View property of your ListView is set to "Report", the following will add a couple of rows to the control and set the sub item text.