vote up -1 vote down star

i make the adapter.insert and the adapter.delete and both work good but not with the adapter.delete even i put only on argument here the code

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click usersAdp.Fill(userstable) usersAdp.Update(txtid.Text, Me.txtname.Text, Me.txtemail.Text, Me.txtpassword.Text, Me.txtconfirm.Text, Me.txtcode.Text, Me.CheckBox1.Checked = True) Me.GridView1.DataSource = userstable Me.GridView1.DataBind() End Sub

flag
Please reformat your question, if you want anyone to answer you, you have got to put in more effort. – Arkain Apr 13 at 0:06
this is the error with the usersAdp.Update overload resolution failed because no accessible 'update' can be accept this number of argument – alyelgarhy Apr 13 at 0:14

1 Answer

vote up 0 vote down

What is the datasource for this adapter - if its an SQL table, has it got a primary key defined?

When you type the usersAdp.Update method, the intellisense should give you the options with various numbers of parameters and types of parameters that are legal combinations. Make sure you pass it the number and parameter types that are one of the legal options.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.