Avatar of CIW_George
CIW_GeorgeFlag for United States of America

asked on 

DGV Validation Error When Bindingsource is Sorted

I’m having a problem with a datagridview that is bound to an Access table.  If the bindingsource is sorted, the wrong dgv value is validated – this occurs randomly and I cannot force the failure.  It appears that, after I enter a new cell value and prior to validation, the dgv is re-sorted and the cell value immediately above the cell I just changed is used for the validation.

If a disable sorting, I do not have any problems with validating the cell.

Below is the code I use to bind the table to the dgv and my cell validation routine.

'**********************************************************

    Dim ds_Dataset As New DataSet("SE_Dataset")
    Dim dt_Names As DataTable = ds_Dataset.Tables.Add(Me.Name)
    Dim da_Names As OleDbDataAdapter = New OleDbDataAdapter
    Dim bs_Names As New BindingSource

'**********************************************************

    Private Sub Table_Bind()

        Dim str_SQL As String = "SELECT * " & _
                                "FROM tbl_SE_DS_Path_Names"
        cmd = New OleDb.OleDbCommand(str_SQL, con_SE_MDB)
        da_Names = New OleDbDataAdapter(cmd)
        Dim commandBuilder As New OleDbCommandBuilder(da_Names)
        da_Names.Fill(dt_Names)
        bs_Names.DataSource = dt_Names
        bs_Names.Sort = "Path_Name"

    End Sub

'**********************************************************

Private Sub dgv_CellValidating(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellValidatingEventArgs) Handles dgv.CellValidating

    If dgv.IsCurrentCellDirty Then
        dgv.CommitEdit(DataGridViewDataErrorContexts.Commit)
        If Not Validate_Path_Name(dgv.Rows(e.RowIndex).Cells(e.ColumnIndex).Value)) Then
            e.Cancel = True
        Else
            bs_Names.EndEdit()
            da_Names.Update(CType(bs_Names.DataSource, DataTable))
        End If

    End Sub

'**********************************************************

Here is the normal sequence of events with the validation works correctly; ‘zz’ was the original cell value; ‘aa’ is the new cell value:

CellBeginEdit:         Row = 2   Value = zz
CellLeave:             Row = 2   Value = zz
CellValidating:        Row = 2   Value = aa

This is the sequence of events when a validation error occurs.  ‘zz’ was the original cell value, ‘aa’ is the new cell value, ‘www’ was the value in the row immediately above ‘zz’ prior to entering ‘aa’.  Note that I am getting 2 CellLeave and 2 CellEnter events when a validation error is going to occur.

CellBeginEdit:         Row = 2   Value = zz
CellLeave:             Row = 2   Value = zz
CellLeave:             Row = 2   Value = www
CellEnter:             Row = 2   Value = www
CellEnter:             Row = 0   Value = aa
CellValidating:        Row = 2   Value = www

I repeatedly changed the same values in the dgv until a validation error occurred.  I cannot force the error – it’s occurs randomly.

This problem DOES NOT OCCUR if I do not sort bs_names.  I’ve tried sorting the dgv, but the problem still occurs.

Hopefully, I’ve made some sense of what I’m experiencing.  When everything is working correctly, my Access table is updated on each cell change; on the random validation error, the table is not updated.

Any thoughts as to why sorting bs_names (or the dgv) appears to cause random validation errors?

Thank you in advance for your help!

George
Visual Basic.NET

Avatar of undefined
Last Comment
Nasir Razzaq
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Try moving this line

dgv.CommitEdit(DataGridViewDataErrorContexts.Commit)

to the else part(the part which executes if value is valid)
Avatar of CIW_George
CIW_George
Flag of United States of America image

ASKER

If you do that, we're still working with the original cell value when doing the validation.  The CommitEdit is needed before the validation.
ASKER CERTIFIED SOLUTION
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of CIW_George
CIW_George
Flag of United States of America image

ASKER

Preliminary testing seems to support your suggestion about the FormattedValue.  I'll pound on it for a while longer to confirm and let you know the results.

Avatar of CIW_George
CIW_George
Flag of United States of America image

ASKER

Thank you for your help CodeCruiser!
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Glad to help :-)
Visual Basic.NET
Visual Basic.NET

Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,

96K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo