新手求教(更新及统计按钮代码)
各位高手大大们,我初学VFP,请问下,更新按钮的CLICK代码应该是怎么样的啊?
另外,我做了一个学生成绩统计的的表单,表单如
课程的COMBO1来源于学生成绩表的字段,我应怎么样来设置统计的click代码呢??
sele xscj
if !empty(this.parent.combo1.value)
kc=(this.parent.combo1.value)
endif
count for kc.成绩=allt(thisform.text1.value) to cj1
count for kc.成绩<allt(thisform.text2.value) to cj2
count for kc.成绩>allt(thisform.text3.value) to cj3
count for kc.成绩>allt(thisform.text4.value) and kc.成绩<allt(thisform.text5.value) to cj4
do case
case this.value=1
thisform.text6.value=str(cj1,4)
case this.value=2
thisform.text6.value=str(cj2,4)
case this.value=3
thisform.text6.value=str(cj3,4)
case this.value=4
thisform.text6.value=str(cj4,4)
endcase
thisform.refresh
可是这里并不能统计具体的哪一科的人数,要怎么样才能做到具体哪一门课程的人数呢?