永发信息网

VB6.0可以帮我分析一下代码么

答案:1  悬赏:80  手机版
解决时间 2021-08-01 17:00
  • 提问者网友:皆是孤独
  • 2021-07-31 21:47

可以帮我逐句分析下下面的代码吗?我想做一个登录系统,非常感谢!!!非常感谢!!!

Private Sub Command1_Click()
Dim mrc As ADODB.Recordset
txtsql = "select username from use where username='" & Trim(Text1.Text) & "'"
Set mrc = ExecuteSQL(txtsql)
If mrc.EOF = True Then
MsgBox " 用户名错误!", vbExclamation + vbOKOnly, "警告"
Text1.SetFocus
Text1.SelStart = 0
Text1.SelLength = Len(Text1.Text)
Exit Sub
End If
username = mrc.Fields(0)
txtsql = "select username from use where password='" & Trim(Text2.Text) & "'"
Set mrc = ExecuteSQL(txtsql)
If mrc.EOF = True Then
MsgBox " 密码错误!", vbExclamation + vbOKOnly, "警告"
Text2.SetFocus
Text2.SelStart = 0
Text2.SelLength = Len(Text2.Text)
Exit Sub
End If

MDIForm1.Show
Unload Me
End Sub

最佳答案
  • 五星知识达人网友:孤老序
  • 2021-07-31 22:15

Dim mrc As ADODB.Recordset



定义一个记录集
呵呵
已经在上个问题给你说过了吧
还没采纳?



txtsql = "select username from use where username='" & Trim(Text1.Text) & "'"


定义一个SQL语句
Set mrc = ExecuteSQL(txtsql)


执行SQL

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯