13. Oktober 2005 15:37
if <Function>('50','10..20|40..45|>60') then <do something>
13. Oktober 2005 15:52
MESSAGE('%1 in %2 = %3',50,'10..20|40..45|>60',TestFilterWert(50,'10..20|40..45|>60'));
MESSAGE('%1 in %2 = %3',50,'10..20|40..55|>60',TestFilterWert(50,'10..20|40..55|>60'));
MESSAGE('%1 in %2 = %3',57,'10..20|40..55|>60',TestFilterWert(57,'10..20|40..55|>60'));
TestFilterWert(FilterWert : Integer;FilterText : Text[250]) : Boolean
TmpGanzzahl.INIT;
TmpGanzzahl.Nummer := FilterWert;
TmpGanzzahl.INSERT();
TmpGanzzahl.SETFILTER(Nummer,FilterText);
EXIT(TmpGanzzahl.FIND('-'));
13. Oktober 2005 16:56
11. April 2008 18:20