Options

I want to block the all items in aitem list when we run a report.

Mounika22Mounika22 Member Posts: 18
I have a write the bwlow code
Item.RESET;
Item.SETFILTER(Item."No.",Item."No.");
if Item.FINDFIRST then begin
REPEAT
Item.Blocked :=true;
until Item.Next =0;
End;

This code is Blocking only first item not all items

Answers

Sign In or Register to comment.