devxlogo

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 

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.

See also  How Seasoned Architects Evaluate New Tech

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.