保存后,如何在文本框中显示表格的数据行。
Try
Me.Validate()
Me.StudentBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.LibraryDataSet)
MsgBox("Student Info Added")
Me.Close()
frmLibrary.Show()
Catch ex As Exception
MsgBox(ex.Message)
End Try