Torna al Thread

Public Class Carrello Private Sub Torna_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Torna.Click Me.Close() End Sub Private Sub Carrello_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO: questa riga di codice carica i dati nella tabella 'DbOggettiDataSet.Carrello'. È possibile spostarla o rimuoverla se necessario. Me.CarrelloTableAdapter.Fill(Me.DbOggettiDataSet.Carrello) Me.StartPosition = FormStartPosition.CenterScreen Me.Label1.Location = New System.Drawing.Size(70, 40) End Sub Private Sub CarrelloBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CarrelloBindingNavigatorSaveItem.Click Me.Validate() Me.CarrelloBindingSource.EndEdit() Me.CarrelloTableAdapter.Update(Me.DbOggettiDataSet.Carrello) <---- Qui Ottengo l'errore End Sub End Class
Copyright © dotNetHell.it 2002-2024
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5