是否有一个与 ItemIndex 等效的 TDBComboBox?
在 TDBComboBox 的帮助文件条目中,它表示所选选项的文本将成为该字段的新值。 是否有任何类似的控件通过 ItemIndex 而不是文本? (例如,表示枚举类型。)
In the helpfile entry for TDBComboBox, it says that the text of the selected option becomes the new value for the field. Is there any similar control that goes by ItemIndex instead of text? (To represent an enumerated type, for example.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 TDBLookupComboBox。 查看 ListField、DataField 和 KeyField 属性。
Try the TDBLookupComboBox. Check out the ListField, DataField and KeyField properties.
您可以用数字('0、'1'、'2'、...)填充 TDBComboBox 项目,但将 DBComboBox1.Style 设置为 csOwnerDrawFixed 并写入 OnItemDraw 事件。 像这样的事情:
You can fill TDBComboBox items with numbers ('0, '1', '2', ...), but set DBComboBox1.Style to csOwnerDrawFixed and write OnItemDraw event. Something like this: