Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Set the LoadStyle to LoadOnDemand to improve load time if the
'data source has lots of rows. LoadOnDemand delays creation of
' UltraGridRow objects until they are needed.
'
Me.UltraGrid1.DisplayLayout.LoadStyle = LoadStyle.LoadOnDemand
Me.UltraGrid1.DataSource = Me.DataSet11
End Sub