1.(共40分)本大题不给参考答案。评分标准如下:
1) 正确建立2个表的数据结构(表结构设计正确)20分
2) 数据正确15分
3) 永久关联正确5分
2
1)
use xs
replace all 有效期 with '2008-12' for substr(IC卡号,4,1)<4
replace all 有效期 with '2009-7' for substr(IC卡号,4,1)>=4
2)
sele 1
use xf
index on IC卡号 tag kh
sele 2
use xs
set rela to IC卡号 into xf
list for 姓名='艾世平' fields IC卡号,xf.时间,xf.类别,xf.金额
3)
use xf
index on 时间 tag shijian
total to hz on 时间 fields 金额 for year(时间)=2007 and month(时间)=11
use hz
list
3
界面设计(10分)
主要属性,事件代码:
文本框text1的value属性值为0(5分)
表单的"load"事件(15分)
public s,n
s=0
n=0
"累加"按钮的"click"事件:
s=s+thisform.text1.value
n=n+1
thisform.label1.caption=str(s)
thisform.label2.caption=str(n)
表单的”dblclick” 事件:
Thisform.release (缺)