Files
projetoBiblioteca05/projetoBiblioteca05/Formulários/FTipo.vb
2021-11-19 22:42:08 -03:00

23 lines
1.1 KiB
VB.net
Executable File

Public Class FTipo
Private Sub TbTipoBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs)
Me.Validate()
Me.TbTipoBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.DbBibliotecaDataSet)
End Sub
Private Sub FTipo_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'TODO: esta linha de código carrega dados na tabela 'DbBibliotecaDataSet.tbTipo'. Você pode movê-la ou removê-la conforme necessário.
Me.TbTipoTableAdapter.Fill(Me.DbBibliotecaDataSet.tbTipo)
'TODO: esta linha de código carrega dados na tabela 'DbBibliotecaDataSet.tbTipo'. Você pode movê-la ou removê-la conforme necessário.
Me.TbTipoTableAdapter.Fill(Me.DbBibliotecaDataSet.tbTipo)
End Sub
Private Sub TbTipoBindingNavigatorSaveItem_Click_1(sender As Object, e As EventArgs) Handles TbTipoBindingNavigatorSaveItem.Click
Me.Validate()
Me.TbTipoBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.DbBibliotecaDataSet)
End Sub
End Class