组合框控件怎么与表格控件绑定
意思是 我选定组合框里面任意一项(此处为科室,例如生产部,人事部,经营部)
下面表格显示对应科室的各人员的具体情况(字段包括,出生日期,应发工资,各种补贴,实发工资等)
[解决办法]
在 Combobox 的 InteractiveChange 事件写查询代码,如:
Thisform.Grid1.Recordsource=null
Select * Into Cursor t1 From 表名 Where Alltrim(科室字段)==Alltrim(This.Displayvalue)
Thisform.Grid1.Recordsource='t1'
Thisform.Grid1.Refresh
[解决办法]
sele 科室名称 from 你的表 into curs ks orde by 科室名称
sele 你的表
set filt to .f.
go top
thisform.combo1.rowsource='ks.科室名称'
thisform.grid1.recordsource='你的表'
**********************************
InteractiveChange 事件:
sele 你的表
set filt to 科室名称==thisform.combo1.displayvalue
go top
Thisform.Grid1.Refresh