AD
Administrator
Syncfusion Team
July 22, 2004 10:35 AM UTC
So you set up GridBoundColumns in the designer, then at runtime, you want to set an empty grid with the proper column headers until you set teh real DataSource later. Is this what you want?
If so, in formload you can try setting the grid.DataSource to an empty DataTable.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.GridDataBoundGrid1.DataSource = New DataTable("emptytable")
End Sub