How to fetch multiple records selected from a form using the default checkbox ..

How to fetch multiple records selected from a form using the default checkbox in that form…

Hi,

The following link might help you: http://www.axaptapedia.com/index.php?title=Multiple_grid_selections

Regards,

Thomas

void checkSelectedRecords()

{

Student inventLocal;

;

//getFirst method gets all the selected records in the grid

inventLocal = Student_ds.getFirst(true);

while (inventLocal)

{

info(strfmt(“You selected Item %1”,inventLocal.Studentid));

// get the next selected record

inventLocal = Student_ds.getNext();

}

}