VB語言設計「使用者名稱」與「密碼」實驗報告

2021-07-12 07:37:09 字數 2484 閱讀 4668

vb語言設計「使用者名稱」與「密碼」實驗報告

姓名:劉兆國

學號:15050342020

實驗日期:2016.5.26

實驗內容:首先創作乙個登入頁面,然後輸入相應的字並對字元大小進行修改,然後建立資料庫,在資料庫內建立資料表並對**進行相應的命名,然後編制程式,最後執行輸出結果。

實驗步驟:

登入-form-frmlogin startupposition=2,賬號-label textbox-txtuserid,

密碼-label textbox-txtpassword,

登入`取消-commandbutton

cmdlogin-default:true-enter

cmdcancel-cancel:true-esc

字型:大小:小一

所有控制項的tablndex屬性:0,1,2,3

txtuserid-0

txtpassword-1

cmdlogin-2

cmdcandel-3

資料—ku—酷(庫)

關係資料

資料表-資料庫

列(column)-field(字段,字段語)

行(row)-recorder(記錄)

1資料庫和表字段如何建立

並向其中新增記錄

建庫:access:testexample.mdb

建表:userinformation

建欄位(2個)

userid,20,

userpassword,6

新增記錄資訊:選中表-右鍵-開啟-新增

2可以讀取並改寫資料表的

第三方程式在**

activex-ole:

工程-引用-microsoft activex data objects2.5 library 3vb 如何通過第三方和資料庫互動

connection cn.connectionstriong=「」

provider=microsoft。jet。oledn.3.51;

data source=資料庫位址

在connection聯通的掉劍俠,可以和資料表進行資料雙向傳輸recordset

學習乙個新的語言[sql]

select  update  insert into  delete

實驗程式:option explicit

const maxlogintimes as integer = 3

private sub cmdlogin_click()

static logintimes as integer

logintimes = logintimes + 1

if logintimes < maxlogintimes then

on error goto ppp

dim cn as connection

dim rs as recordset

dim strsql as string

set cn = new connection

set rs = new recordset

cn.connectionstring = " provider=microsoft.jet.oledb.3.51;data source=c:\users\jf\desktop\testexample.mdb"

cn.open

rs.activeconnection = cn

strsql = "select userpassword from userinformation where userid= '" & me.txtuserid.text & "'"

rs.open (strsql)

if rs.eof = true then

msgbox txtuserid.text & "不存在"

me.txtuserid.setfocus

me.txtuserid.selstart = 0

me.txtuserid.sellength = len(me.txtuserid.text)

else

if rs.fields("userpassword").value = me.txtpassword.text then

msgbox "登入成功"

unload me

'frmnew.show

else

msgbox "密碼錯誤"

end if

end if

ppp:

cn.close

else

msgbox "親,您的輸入次數超過允許的最大次數", vbcritical, "登入"

end if

end sub

發現的錯誤:

建立資料庫失敗,原因是未能正確的建立正確的庫,詢問其他同學後得以改正。

程式編寫有誤,缺少相應的語句,並已經改正。

對部分程式不了解,經同學輔助後得以了解和改正。

感想vb是一科邏輯性非常強的科目,仍需透徹研究,抓住並重視細節,再接再厲。

VB語言「使用者名稱」與「密碼」實驗報告

vb語言5 使用者名稱 與 密碼 實驗報告 姓名 呂建勳 學號 15050341019 實驗日期 2016.5.26 實驗內容 首先創作乙個登入頁面,然後輸入相應的字並對字元大小進行修改,然後建立資料庫,在資料庫內建立資料表並對 進行相應的命名,然後編制程式,最後執行輸出結果。實驗步驟 登入 for...

使用者名稱與密碼 實驗報告

vb 使用者名稱與密碼 實驗報告 姓名 楊錦彪 學號 15050342034 實驗內容 用label和text設計出乙個 使用者名稱與密碼 的程式,建立資料庫並向其中新增記錄,利用 工程 引用 建立第三方和資料庫的聯絡,學習一新言 sql 程式編碼 option explicit const max...

使用者名稱重複判斷設計與實現

所需要的介面和實現類 介面 使用者註冊 賬號的唯一性校驗,需要傳參 username boolean username string username 實現類 override public boolean username string username 所需要的註冊的jsp介面 已有賬號 所需要...