As far as I understand this trigger won't work in my case. I have lots of statistics which cannot be calculated using the standard sumindex- and flowfield. As the calculation of these values takes a lot of time and place in the OnAfterGetCurrentRecord and is not always nessecary, I wanted to do this calculation only if e. g. <Strg> is pressed while going through the records.
Something like this:
IF KeyPressed(Strg) THEN
BEGIN
<Calculation>
END;
As I did not know how to manage this, I introduced a new boolean variable named "extended statistic", which ist toggled by one menuitem's OnPushTrigger ("extended statistic" := NOT "extended statistic") by pressing F9, so that the expression in the OnAfterGetCurrentRecord now shows like this:
IF "extended statistic" THEN
BEGIN
<Calculation>
END;
Comments
Something like this:
IF KeyPressed(Strg) THEN
BEGIN
<Calculation>
END;
As I did not know how to manage this, I introduced a new boolean variable named "extended statistic", which ist toggled by one menuitem's OnPushTrigger ("extended statistic" := NOT "extended statistic") by pressing F9, so that the expression in the OnAfterGetCurrentRecord now shows like this:
IF "extended statistic" THEN
BEGIN
<Calculation>
END;
Greetings to everybody reading this
Peter