Issue 1:
How to put e g 4 column values from a predefined gruop query containing a lot of columns into one column (4 rows) in a list?
Issue 2:
I want to report several parameters from a database based on the user's options in a "FindData"-form. Typical parameters: Amplitude, period, rate. For each parameter, the max, min, avg and variance should be displayed, and also each single value:
The [+/-] indicates that it would have been nice to drill in and out.
Is there a quite simple way to do this. For now I have made one "list" for each Min/Max etc value for each parameter. Each one of these controls need to be coded to display a given value from a direct query. The details are put into a subform in table-view that is simply programmed to show a predefined query (where the SQL-sentence is altered based on the user input). This involves quite a bit of coding that seems unnecessary.
NB: It should be possible to alter what parameters to be shown at runtime (based on user-input).
Y.S.
-van
How to put e g 4 column values from a predefined gruop query containing a lot of columns into one column (4 rows) in a list?
Issue 2:
I want to report several parameters from a database based on the user's options in a "FindData"-form. Typical parameters: Amplitude, period, rate. For each parameter, the max, min, avg and variance should be displayed, and also each single value:
Code:
Amplitude Period Rate
Avg ... ... ...
Min
Max
Var
[+/-]
All single values for each parameter
... ... ...
... ... ...
The [+/-] indicates that it would have been nice to drill in and out.
Is there a quite simple way to do this. For now I have made one "list" for each Min/Max etc value for each parameter. Each one of these controls need to be coded to display a given value from a direct query. The details are put into a subform in table-view that is simply programmed to show a predefined query (where the SQL-sentence is altered based on the user input). This involves quite a bit of coding that seems unnecessary.
NB: It should be possible to alter what parameters to be shown at runtime (based on user-input).
Y.S.
-van