To select multiple, nonconsecutive rows (a tagged list) in SheridanSoftware’s DataGrid (which is a part of its Data Widgets package), firstset the SelectionTypeRow property of the DataGrid to TagList. For eachrow you want to select, set the EvalRowNumber property to the row numberand the EvalRowIsSelected property to TRUE. This code illustrates how toselect odd rows in a DataGrid using this approach:
Sub SelectSomeRows() Dim i As Integer For i = 1 To 10 Step 2 SSDataGrid1.EvalRowNumber = i SSDataGrid1.EvalRowIsSelected = True Next i End Sub
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























