程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> delphi用數據庫記錄賬號的登陸功能

delphi用數據庫記錄賬號的登陸功能

編輯:Delphi

用delphi做了一個霸氣的登陸界面

用數據庫記錄賬號的登陸功能 的實現
 

第一步配置con1控件

第二步配置adoquery1屬性

第三步:添加按鈕點擊事件

procedure TForm2.btn1Click(Sender: TObject);
begin
    if (edt1.Text = '') or (edt2.Text = '')then
    ShowMessage('賬號或密碼不能為空')
    else
    begin
    With ADOQuery1 do
    begin
      close;
      SQL.Clear;
      SQL.Add('select * from admins where  學號='''+edt1.text+'''  and 密碼='''+edt2.text+'''');
       Open;
       if Eof then
       begin
       ShowMessage('賬號或密碼錯誤');
       exit;
       end
       else
       begin         //界面跳轉
        Form2.Hide; //當前窗口隱藏
        Form1.Show; //要跳轉到的窗口顯示
        Form1.stat1.Panels[1].Text := edt1.Text;
        Form1.stat1.Panels[3].Text := FieldValues['權限'];
        Form1.stat1.Panels[5].Text := getTimeNow();
       end;
    end;
    end;
end;

這樣一個登陸界面登陸及跳轉就實現了

出處 http://7071976.blog.51cto.com/7061976/1220038

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved