You can use the SelectedItems property of the dataGrid control as it will contain all of the selected rows. Something like: if dg1::SelectedItems::Count 0 perform varying myrow as type rowTemplate thru dg1::SelectedItems * do what you like with each row... end- perform end-if
↧