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

2021-07-13 14:49:08 字數 2446 閱讀 8649

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

姓名:呂建勳

學號:15050341019

實驗日期: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

發現的錯誤:

出現使用者型別未定義,有又從新定義了connection和recordset,建立資料庫失敗,原因是未能正確的建立正確的庫,詢問其他同學後得以改正。

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

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

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

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

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

滲透測試 利用Burp爆破使用者名稱與密碼

burp 全稱 burp suite,是用於攻擊web 應用程式的整合平台。它包含了許多任務具,可以抓包可以爆破也可以掃瞄漏洞。主要元件如下 proxy 是乙個攔截http s的 伺服器,作為乙個在瀏覽器和目標應用程式之間的中間人,允許你攔截,檢視,修改在兩個方向上的原始資料流。spider 是乙個...