3个回答
展开全部
combo组合框中,举例说明下让其显示部门名称
但是如果部门名称表里有重复记录如会出现两个生产科等
表:bm.dbf 字段 部门名称
财务科
生产科
生产科
设备科
要求在组合框显示部门名称
在combo1的init代码:
select dist 部门名称 from bm.dbf into cursor temp &&把部门名称存入临时表(dist 是去掉重复记录)
this.rowsource="temp"
this.rowsourcetype=6
但是如果部门名称表里有重复记录如会出现两个生产科等
表:bm.dbf 字段 部门名称
财务科
生产科
生产科
设备科
要求在组合框显示部门名称
在combo1的init代码:
select dist 部门名称 from bm.dbf into cursor temp &&把部门名称存入临时表(dist 是去掉重复记录)
this.rowsource="temp"
this.rowsourcetype=6
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
吧问题描述好!别人才好回答1这样谁知道你的意思!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是去了重复值吧?
例如:
在combo1.init中
create cursor curTmp(curFile c(50))
insert into curTmp valuse("A")
insert into curTmp valuse("A")
insert into curTmp valuse("B")
select DISTINCT *, recn() as px from curTmp into cursor curTemp
select curTemp
scan
this.AddListItem(curFile, px)
endscan
clos tabl all
例如:
在combo1.init中
create cursor curTmp(curFile c(50))
insert into curTmp valuse("A")
insert into curTmp valuse("A")
insert into curTmp valuse("B")
select DISTINCT *, recn() as px from curTmp into cursor curTemp
select curTemp
scan
this.AddListItem(curFile, px)
endscan
clos tabl all
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询