计算机应用 | 古代文学 | 市场营销 | 生命科学 | 交通物流 | 财务管理 | 历史学 | 毕业 | 哲学 | 政治 | 财税 | 经济 | 金融 | 审计 | 法学 | 护理学 | 国际经济与贸易
计算机软件 | 新闻传播 | 电子商务 | 土木工程 | 临床医学 | 旅游管理 | 建筑学 | 文学 | 化学 | 数学 | 物理 | 地理 | 理工 | 生命 | 文化 | 企业管理 | 电子信息工程
计算机网络 | 语言文学 | 信息安全 | 工程力学 | 工商管理 | 经济管理 | 计算机 | 机电 | 材料 | 医学 | 药学 | 会计 | 硕士 | 法律 | MBA
现当代文学 | 英美文学 | 通讯工程 | 网络工程 | 行政管理 | 公共管理 | 自动化 | 艺术 | 音乐 | 舞蹈 | 美术 | 本科 | 教育 | 英语 |

sql2000+公寓管理系统+delphi[开题报告+论文+源代(4)

2013-06-08 02:45
导读:begin showmessage('已经存在相同的学号!'); edit1.SetFocus; end; end; 删除学生信息的窗体: procedure TForm_infos_del.Button3Click(Sender: TObject); begin if RadioButton1.Checked then
begin
    showmessage('已经存在相同的学号!');
    edit1.SetFocus;
  end;
end;

删除学生信息的窗体:

procedure TForm_infos_del.Button3Click(Sender: TObject);
begin
  if RadioButton1.Checked then
  begin
    if edit1.Text='' then
      begin
        showmessage('请填写学号!');
        edit1.SetFocus;
      end
      else
        if MessageDlg('确认删除'+edit1.Text,mtConfirmation,mbOkCancel,0)=mrOk then
         begin
           query1.Close;
           query1.SQL.Clear;
           query1.SQL.Add('delete from student where sno=:sno');
           query1.ParamByName('sno').AsString:=edit1.Text;
           query1.ExecSQL;
           query2.ParamByName('Num_room').AsString:=Num_room;
           query2.ExecSQL;
           edit1.Text:='';
         end;
  end;
  if RadioButton3.Checked then
  begin
    if edit2.Text='' then
      begin
        showmessage('请填写寝室号!');
        edit2.SetFocus;
      end (科教范文网http://fw.ΝsΕΑc.com编辑)
      else
        if edit3.Text='' then
          begin
            showmessage('请填写床位号!');
            edit3.SetFocus;
          end
          else
        if MessageDlg('确认删除?',mtConfirmation,mbOkCancel,0)=mrOk then
         begin
           query1.Close;
           query1.SQL.Clear;
           query1.SQL.Add('delete from student where Num_room=:Num_room and Num_bed=:Num_bed');
           query1.ParamByName('Num_room').AsString:=edit2.Text;
           query1.ParamByName('Num_bed').AsString:=edit3.Text;
           query1.ExecSQL;
         &nbs

上一篇:delphi+工资管理系统+access[开题报告+论文+源代 下一篇:没有了