vb 使用者名稱與密碼 實驗報告
姓名:楊錦彪 學號:15050342034
實驗內容:用label和text設計出乙個「使用者名稱與密碼」的程式,建立資料庫並向其中新增記錄,利用「工程——引用」建立第三方和資料庫的聯絡,學習一新言(sql)。
程式編碼:
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;datasource=c:\users\jf\desktop\testexample.mdb"
cn.open
rs.activeconnection = cn
strsql = "select userpassword from userinformationwhere 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
ifrs.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語言5 使用者名稱 與 密碼 實驗報告 姓名 呂建勳 學號 15050341019 實驗日期 2016.5.26 實驗內容 首先創作乙個登入頁面,然後輸入相應的字並對字元大小進行修改,然後建立資料庫,在資料庫內建立資料表並對 進行相應的命名,然後編制程式,最後執行輸出結果。實驗步驟 登入 for...
VB語言設計「使用者名稱」與「密碼」實驗報告
vb語言設計 使用者名稱 與 密碼 實驗報告 姓名 劉兆國 學號 15050342020 實驗日期 2016.5.26 實驗內容 首先創作乙個登入頁面,然後輸入相應的字並對字元大小進行修改,然後建立資料庫,在資料庫內建立資料表並對 進行相應的命名,然後編制程式,最後執行輸出結果。實驗步驟 登入 fo...
使用者名稱 密碼加密
關於ios下的n種加密,各種頭大 終於把ios平台下的加密演算法調通了,在這裡記錄一下,並說一下遇到的n種加密問題。首先要說明一下我所遇到的需要加密的資料 向伺服器端傳送使用者名稱與密碼進行portal認證,當然為了顯示出專業性 扯淡的說 伺服器提供商要求傳送經過四層加密後的資料,分別是 1 使用者...