How can I force a formula cell to apply a formula to cells in the grid programmatically? The only way I have been able to get a formula cell to refresh is when I modify the contents of one of the cells referenced in the formula.
Form_Load
Me.GridControl1(1, 1).CellType = "FormulaCell"
Me.GridControl1(1, 1).Text = "=sum(b1:c1)"
Me.GridControl1(1, 2).Text = 10
Me.GridControl1(1, 3).Text = 10
'Me.GridControl1(1, 1).CellType will be 20
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.GridControl1(1, 3).Text = 100
End Sub
'Me.GridControl1(1, 1).CellType will STILL be 20