Hi Angelo,
WJ-8404 is fixed in Wisej release 1.4.20
Best regards
Frank
Hi Angelo,
we checked this in detail and here is what happens:
When you set the filter, it resets the rows and the data source sets the cell to -1/-1
causing the DataGridView to validate the current cell, but the data source is null.
It´s logged as WJ-8404, fixed and will be included in the next release.
Best regards
Frank
Thanks Frank,
At the moment I solved with your precious advice.
I look forward to further details.
My application, which I am translating from a WindowsForm, is quite complex (custom datgridview, custom event, etc) and I would not want to avoid other problems due to the bug.
Hi Angelo,
I´ll check in more detail, but you can get around the exception if you change your code to
If (e.Value IsNot Nothing Then
Dim a As String = e.Value.ToString
End If
Best regards
Frank
Please login first to submit.