Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
' ShowCalculatingText specifies whether to display #Calculating in cells while they
' are being calculated. Setting the property on the layout's override affects the
' whole grid.
Me.UltraGrid1.DisplayLayout.Override.ShowCalculatingText = DefaultableBoolean.True
' You can override this setting on a specific band.
Me.UltraGrid1.DisplayLayout.Bands(1).Override.ShowCalculatingText = DefaultableBoolean.False
' You can also override it on a specific column.
Me.UltraGrid1.DisplayLayout.Bands(1).Columns(0).ShowCalculatingText = DefaultableBoolean.False
End Sub