CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: erlendne

Search: Search took 0.01 seconds.

  1. Re: [RESOLVED] Cannot update values to multiple rows i dataGridView

    I solved it with a custom update query in my dataset instead.
  2. Re: Cannot update values to multiple rows i dataGridView

    I also tried with this:

    foreach (DataGridViewRow dr in bestillingerDataGridView.Rows)
    {
    if (dr.Selected)
    {
    ...
  3. [RESOLVED] Cannot update values to multiple rows i dataGridView

    Hi,

    I am using Visual Studio 2010 RC, but I don't know if this problem is unique for this version of Visual Studio.

    I am trying to update two values of the selected rows in a dataGridView. I've...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured