将参数传递给fillby(vb.net)

时间:2018-03-26 04:25:57

标签: vb.net visual-studio

我在将参数传递给fillby

时遇到问题

我做了填充方法调用FillByA但是有问题!!

它说:

  

“'公共覆盖的参数太多Overloads函数fillbyA(数据表为ContactsDataSet.recordsDataTable)为整数'

这是我的代码:

Public Class Adminlogin
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        If TextBox1.Text.Trim = "" Or TextBox2.Text.Trim = "" Then
            MsgBox("you should complet ypur deails")
        Else

//error happen here !
            Me.AdminTableAdapter.FillByA(Me.UserDataSet1.Admin, Me.TextBox1.Text.Trim, Me.TextBox2.Text.Trim)

            If Me.UserDataSet1.user.Count > 0 Then
                Me.Close()
                Test.Show()
            Else
                MsgBox("Logon failure, user name or password are incorrect!", MsgBoxStyle.Critical)
            End If
        End If
    End Sub

    Private Sub Ad_NameTextBox_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TextBox1.KeyPress
        If IsNumeric(e.KeyChar.ToString()) Then
            MessageBox.Show("Letters only!")
            SendKeys.Send("{Backspace}")
        End If
    End Sub

    Private Sub Ad_NameTextBox_TextChanged(sender As Object, e As EventArgs) Handles TextBox1.TextChanged

    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        Me.Close()
        admincon.Show()
    End Sub
End Class 

0 个答案:

没有答案