Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Private Sub UltraGrid1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles ultraGrid1.InitializeLayout
' FormulaErrorValue specifies which value to send to the data source in case
' the formula associated with the cell evaluated to an error. NOTE: This does
' not specify what to display when there is a formula error. For that you
' will have to either hook into the UltraCalcManager's FormulaError event or
' localize the string resources.
e.Layout.Bands(0).Columns("Date").FormulaErrorValue = New DateTime(1, 1, 1)
e.Layout.Bands(0).Columns("currency").FormulaErrorValue = CType(-1, Decimal)
e.Layout.Bands(0).Columns("string").FormulaErrorValue = "#ERR"
End Sub