求一个如何出dbf问题?
CLOSE alluse c:\5
sum 人数 for 左眼评价=='左眼视力弱' to m1
use c:\6
sum 人数 for 右眼评价=='右眼视力弱' to m2
use c:\8
m3=人数
?m1+m2-m3
thisform.text5.value="视力弱"+ALLT(STR(m1+m2-m3,10,2))+"人"
COPY TO c:\tm.dbf &&将视力弱的导出为另一个表
CLOSE all
我是想问这个 COPY TO c:\tm.dbf 导出的成了c:\8这个表的人数了,
我想把 thisform.text5.value="视力弱"+ALLT(STR(m1+m2-m3,10,2))+"人" 这个显示视力弱的人数导成为tm.dbf中。
请教老师们怎么写?