I am Using a DataGridView which contains user data (first name, last name, user id, pw). User can edit one row at a time.
When i start editing a record in the grid, all fields should appear (TextBox like) editable. Using DataGridViewTextBox columns only. But only current cell ( User Name) appears editable at first and none of the other fields appear to be editable. It is also the first place the edit highlight appears.
But i want all my edit cell should be appear 'TextBox' like edit mode. And also the cursor should land in the First Name column. The user should be required to fill in the table from left to right, providing the first name, last name, User name and pwd, in that order.
The question is ' How to show all cell in a row should appear like TextBox-like 'Edit' mode? [TextBox like means -- White background with rectangle border and should be highlighted if not currently edited]
