Hi, im developing a software in vb 2012 with a access 2010 local db, but for some reason i can´t remove records from the database. the following code breaks on line 6. i cant find the problem. the dataset is transmissoes and the the table is utilizador_avancado. can anyone help, i'm stuck
s = TextBox1.Text
Dim itemFound As Integer = BindingSource1.Find("user", s)
If itemFound <> -1 Then
Try
BindingSource1.Position = itemFound
Me.TransmissoesDataSet.Tables("utilizador_Avancado").Rows(itemFound).Delete()
Me.TransmissoesDataSet.AcceptChanges()
Me.Utilizador_AvancadoTableAdapter.Update(TransmissoesDataSet)
Me.Utilizador_AvancadoTableAdapter.ClearBeforeFill = True
Me.Utilizador_AvancadoTableAdapter.Fill(Me.TransmissoesDataSet.Utilizador_Avancado)
MsgBox("Utilizador Excluido com Sucesso", MsgBoxStyle.Information)
Catch ex As Exception
MsgBox("Erro ao Excluir Utilizador" + vbCrLf + " Base de Dados Inalterada", MsgBoxStyle.Critical)
End Try
Else
MsgBox("O utilizador a excluir não foi encontrado", MsgBoxStyle.Critical)
End If
End If