Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports Infragistics.Win.CalcEngine
Imports Infragistics.Win.UltraWinCalcManager
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
' By default the cells that are not visible in an UltraGrid may not get
' calculated until they become visible. Set the DeferredCalculationsEnabled
' to false to change this behavior so the calc manager does not defer
' calculations of cells until they are shown.
'
Me.ultraCalcManager1.DeferredCalculationsEnabled = False
End Sub