Dear ALL,
I have an action button on a page. My issue is when I click it, it just mark the first record only. I want it to select all records .I have used both FindSet and FindFirst without success .
Below is my code
CurrPage.SetSelectionFilter(Rec);
If rec.FindSet then
repeat
rec.Mark:=true;
rec.Modify(true);
until rec.next=0;