清除DataGridView上的DataSource

 
清除DataGridView上的DataSource (非Manual Insert的 – 用DataSource Binding的)
 

 
   Private Sub Refresh_Grid()
      Dim Blank_DataTable As New DataTable
      DataGridView1.DataSource = Blank_DataTable
   End Sub