怎样在dbgrid的下拉条目中加入某个字段中的所有记录(50分)

  • 主题发起人 主题发起人 cool586
  • 开始时间 开始时间
C

cool586

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样在dbgrid的下拉条目中加入某个字段中的所有记录
 
dbgrid colenter event add code like below
if DBGrid_MX.SelectedField = 你要的字段名称 then
Dbgrid_mx.Columns[DBGrid_MX.SelectedIndex].PickList := tempstrings;
tempstrings is a tstrings var which difined by youself to load the fieldlist which
you wanna to add.
 
请看我回答的另一个贴子:
http://211.101.4.25/delphibbs/dispq.asp?lid=676704
建议以后提问前先搜索一下相关问题,这样可以避免浪费积分。[:)]
 
用DevExpress控件的DXDBGRID可以不用写代码实现
 
后退
顶部