devxlogo

Programmatically Selecting Multiple Rows in a Data Grid

Programmatically Selecting Multiple Rows in a Data Grid

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 
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist