I need some sample code on how to setup ValueBasedAppearance of a cell based on the value of another cell. The example in the Samples Explorer deals with value of the cell changing the appearance. Any help appreciated
Regards,
Emil
If you add the UltraCalcManager to your form/app it will allow you to use a Formula Condition.
You can then create a condition that references other cells.
eg.
( [cella] > [cellb] ) if cella greater than cellb then true
( [cellb] <> dbnull() ) if cellb is not null then true
etc.
Hope that helps
Zepp