搜索
首页 电脑/网络 程序设计 其他编程语言

Delphi的编程问题

建立一个数据库表(student.db)利用Table控件的各种方法,编写程序可以对表内容进行追加、插入、删除、保存等编辑操作。能在Delphi7下运行,有完整源代码.

全部回答

2007-06-26

0 0
    form1。Tag := 0; combobox1。Tag := 0; combobox1。Clear ; label1。Caption := format(#13+'重新开始!'+#13+#13+#13+'正确率为:'+#13+#13+'%f%%',[0。
    00]); edit2。SetFocus; end; procedure TForm1。FormActivate(Sender: TObject); var a, b, p, t : integer; begin Randomize; a := Trunc(10 + Random(90)); b := Trunc(10 + Random(90)); p := Trunc(Random(2)); if p = 0 then begin Edit1。
    text := format('%3d +%3d =', [a,b]); edit1。Tag := a + b; // 将本题答案放入edit1。
  Tag中 end else begin If a < b Then begin t := a; a := b; b := t; end; begin Edit1。
    text := format('%3d -%3d =', [a,b]); edit1。Tag := a - b; // 将本题答案放入edit1。
  Tag中 end; end; edit2。SelStart := 0; edit2。  Text := ''; edit2。SetFocus; end; procedure TForm1。
  Edit2KeyPress(Sender: TObject; var Key: Char); var x : single; s : string; begin if key = #13 then begin Form1。
    Tag := Form1。Tag + 1; if strtoint(edit2。Text) = edit1。Tag then begin combobox1。
  Items。Insert(0,format(edit1。  text + '%3s √',[edit2。text])); combobox1。Tag := combobox1。
  Tag + 1; end else combobox1。Items。Insert(0,format(edit1。  text + '%3s ×',[edit2。
  text])); combobox1。ItemIndex :=0; Form1。FormActivate(sender); x := combobox1。
  Tag * 100 / (form1。  Tag); s := #13 + '共做%d题' + #13 + #13 + #13 + '正确率为:' + #13 + #13 + '%f%%'; label1。
  Caption := format(s,[form1。tag,x]) end;。  。

类似问题换一批

热点推荐

热度TOP

相关推荐
加载中...

热点搜索 换一换

电脑/网络
其他编程语言
硬件
电脑装机
程序设计
互联网
操作系统/系统故障
笔记本电脑
反病毒
百度
软件
程序设计
其他编程语言
VB
数据库
C/C++
汇编语言
JAVA相关
VC++
C#/.NET
其他编程语言
其他编程语言
举报
举报原因(必选):
取消确定举报