Minha codificação:
Sub ExcluirDados()
If Not txtId.Text <> "" Then
Sql = "DELETE * FROM BDFeriado WHERE ID='" + txtId.Text + "'"
Dim Conn As New OleDbConnection(connString)
Dim Cmd As New OleDbCommand(Sql, Conn)
Try
Conn.Open()
Cmd.ExecuteNonQuery()
MsgBox("Dados Excluídos !", MsgBoxStyle.Information, Me.Text)
Catch ex As OleDbException
Throw New Exception("Erro Banco de Dados : " + ex.Message)
Catch ex As Exception
Throw New Exception("Erro Run Time : " + ex.Message)
Finally
Conn.Close()
Conn.Dispose()
Cmd.Dispose()
End Try
Else
MsgBox("Registro de Dados Não Encontrado no Banco de Dados !", MsgBoxStyle.Critical, Me.Text)
End If
Call CarregaDados("")
End Sub
BOTÃO
Private Sub btnExcluir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExcluir.Click
If MsgBox("Excluir Dados ?", MsgBoxStyle.Question + MsgBoxStyle.YesNo, Me.Text) = MsgBoxResult.No Then
Exit Sub
End If
MsgBox("Dados Excluídos !", MsgBoxStyle.Information, Me.Text)
Call ExcluirDados()
End Sub
Alguém pode me ajudar, preciso do código correto!!!
Obrigada!!! [b]