是否有其他方法可以检查已存储在MS ACCESS中的特定数据?

时间:2014-02-14 16:20:38

标签: vb6

我已成功连接Visual Basic和MS Access。但是当我运行程序时,错误将出现在“Adodc1.Recordset.MoveFirst”上。以下是代码:

    Private Sub Command1_Click()
    Adodc1.Recordset.MoveFirst
    While (Adodc1.Recordset.EOF = False)
    If Adodc1.Recordset.Fields(1) = Text1.Text Then
    If Adodc1.Recordset.Fields(2) = Text2.Text Then
    Form2.Show
    Else
    MsgBox "username or password is incorrect"
    End If
    End If
    Adodc1.Recordset.MoveNext
    Wend
    End Sub

该区域的错误是什么?检查数据库中的数据的其他方法有哪些? 请帮帮我。

0 个答案:

没有答案