Calculate Event on Edit Tables (OpenInsight 32-Bit)
At 31 JAN 2005 03:52:03PM John Bouley wrote:
I am having a problem with the Calcualte event after modifying the contents of an Edit Table. If I understand things correctly the Calculate only works from the window's Record property. So I wrote a sub to Refresh the Record property from the actual controls. I have verified that the controls have the correct data and the Record property has the right data but my formula will not calculate.
The formula is part of the same Edit Tableā¦
Thanks,
John
At 31 JAN 2005 04:05PM Donald Bakke wrote:
John,
Are you using INVALUE or DEFPROP to update the EditTable? If you are using the ARRAY property this might be your problem.
At 31 JAN 2005 04:09PM John Bouley wrote:
INVALUE
At 31 JAN 2005 04:16PM Donald Bakke wrote:
John,
I hate to ask this, but you *are* passing in the correct column number in the Send_Event call right?
At 31 JAN 2005 04:41PM John Bouley wrote:
Don,
Thanks for asking. I was issuing a call send_event(ctrl,"CALCULATE") where ctrl is the Edit Table. What is the syntax for the specific control?
John
At 31 JAN 2005 04:50PM John Bouley wrote:
Thanks Don,
Just figured it out. call send_event(ctrl,"CALCULATE",column)
works like a charm!
John