Search Result

Collapse
2 results in 0.0044 seconds.
Keywords
Members
Tags
rowheader
  •  

  • Djiber
    started a topic dataGridView Selection?

    dataGridView Selection?

    Is it possible and how to disable selection of 1'st row in dataGridView.

    I made it select some other row, but even so when u try to move with arrows on keyboard it'll select 2'nd row(cause 1'st row was selected initially and you can see it's selected on RowHeader-1'st/Left Column)

    This is my code for selecting row:

    Code:
    dataGridView1.ClearSelection();
    dataGridView1.Rows[BoPrI].Selected = true;
    ...
    See more | Go to post

  • problems with datagridview rowheader value

    I have an application where a datagridview is used to display some data, a datatable is bounded to it, and i want to put some text in the front of some rows to indicate that they are different from others.

    my code checks the rows and used the following

    mydatagridview. Rows.Item(iCnt) .HeaderCell.Val ue = "A"

    to set the row header values, it was fine when the data was first loaded. however, when...
    See more | Go to post
Working...