Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.OleDbDataAdapter1.Fill(Me.DataSet11)
Me.OleDbDataAdapter2.Fill(Me.DataSet11)
Me.OleDbDataAdapter3.Fill(Me.DataSet11)
Me.ultraGrid1.SetDataBinding(Me.DataSet11, "")
' You can set the ScrollTipField to the key of the column key you want the
' UltraGrid to display cell values of in the tool-tips that show up when the user
' drags the vertical scrollbar thumb.
Me.UltraGrid1.DisplayLayout.Bands(0).ScrollTipField = "CustomerID"
' Ensure that ScrollStyle is Deferred which it is by default otherwise the
' UltraGrid will not display tool-tips mentioned above when the user drags the
' vertical scrollbar thumb.
Me.UltraGrid1.DisplayLayout.ScrollStyle = ScrollStyle.Deferred
End Sub