Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用查询搜索了数据库。
搜索结果显示在 DBGrid 组件中,供用户选择他/她希望继续处理的行。
DBGrid 始终将记录指针设置为结果集中的第一条记录,因此默认情况下始终“选中”一行。我需要将此行为更改为在首次显示数据时不选择任何行,以便我可以确定用户是否实际进行了选择。
是否可以判断是否没有进行选择,即用户没有选择任何行?
非常欢迎任何帮助!
您可以将 dgMultiSelect 包含到 DBGrid.Options 中,然后 DBGrid.SelectedRows 将包含明确选择的记录书签的列表。如果没有 dgMultiSelect,DBGrid 将始终跟踪当前数据集记录。