三、
1. 打開并修改表單
MODIFY FORM zonghe
2. 雙擊“添加>”按鈕,在“Command1.Click”編輯窗口中進行修改。
thisform.list2.additem(thisform.list1.value)
3. 雙擊“<移去”按鈕,在“Command2.Click”編輯窗口中進行修改。
thisform.list2.removeitem(thisform.list2.listindex)
4. 雙擊“確定”按鈕,在“Command3.Click”編輯窗口中進行修改。
cn=""
cc=thisform.list2.ListCount
FOR i=1 TO cc
x=allt(thisform.list2.listitem(i))
cn=cn+"課程名稱='"+x+"'"+" or "
ENDFOR
cn=substr(cn,1,len(cn)-4)
*****上面的程序在Command3.Click中已有,考生只要添加下面的語句
select 姓名,課程名稱,考試成績 from student;
join course join score ;
on course.課程編號=score.課程編號;
on student.學(xué)號=score.學(xué)號 where &cn ;
order by 課程名稱,考試成績 desc into table zonghe
相關(guān)推薦:
2011年計算機等級考試二級VFP基礎(chǔ)教程匯總
2011年全國計算機等級考試二級VFP考點匯總
計算機等級考試二級VF八套全真預(yù)測試題及答案
計算機等級考試二級VFP上機操作常見錯誤總結(jié)