|
|
#11 |
|
Участник
|
Пример из справки
/> These examples show how to use the GETRANGEMIN function. With a filter which is a single range: Код: Customer.SETFILTER("No.",'100..200');
Val := Customer.GETRANGEMIN("No.");
MESSAGE(Text000', Val);The minimum value is: 100 With a filter which is single value: Код: Customer.SETFILTER("No.",'100');
Val := Customer.GETRANGEMIN("No.");
MESSAGE(Text000, Val);Text Constant ENU Value Text000 'The minimum value is: %1' The message window shows: The minimum value is: 100 With a filter which is not a single range: Код: Customer.SETFILTER("No.",'200|300');
Val := Customer.GETRANGEMIN("No."); |
|
|