Unit2.pas
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     GroupBox1: TGroupBox;
  9.     Label1: TLabel;
  10.     Label2: TLabel;
  11.     Edit1: TEdit;
  12.     Label3: TLabel;
  13.     Edit2: TEdit;
  14.     Button1: TButton;
  15.     Button2: TButton;
  16.     RadioButton1: TRadioButton;
  17.     RadioButton2: TRadioButton;
  18.     procedure Button1Click(Sender: TObject);
  19.     procedure Button2Click(Sender: TObject);
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25. var
  26.   Form2: TForm2;
  27. implementation
  28.     uses unit1;
  29. {$R *.dfm}
  30. procedure TForm2.Button1Click(Sender: TObject);
  31. begin
  32.   if (not RadioButton1.checked) and (not RadioButton2.Checked)  then
  33.     MessageDlg('请选择用户身份!',mtWarning,[mbOK],0);  //必须选择用户身份
  34.   if  RadioButton1.checked  then   //用户身份为管理员
  35.     if edit1.text='glmm' then
  36.       begin
  37.          showmessage('恭喜你成功登陆系统');
  38.          MessageDlg('恭喜你成功登陆系统!',mtInformation,[mbOK],0);
  39.          close;
  40.        end
  41.      else
  42.       MessageDlg('密码错误,请重新输入!',mtError,[mbOK],0);
  43.       If  RadioButton2.checked then  //用户身份为考生
  44.     if Length(Edit2.text)<>8 then
  45.       MessageDlg('重新输入准考号!',mtWarning,[mbOK],0)
  46.     else
  47.       begin
  48.         showmessage('恭喜你成功登陆系统!进入考试');
  49.         close;        
  50.       end;
  51. end;
  52. procedure TForm2.Button2Click(Sender: TObject);
  53. begin
  54.     form1.close;
  55.     form2.Close;
  56. end;
  57. end.