Welcome to WindowsClient.net | Sign in | Join
Home > Learn > Windows Forms FAQs
Here are some frequently asked questions about Windows Forms and their answers.
Use the DataGrid.Select method.
using System.Windows.Forms; DataGrid dataGrid1; // ... dataGrid1.Select( 1 ); // select row 1
Contributed from George Shepherd's Windows Forms FAQ