Need help with error from blob [mysql] in datagridview

Untamed

Well-known member
Joined
Jul 25, 2009
Messages
53
Programming Experience
5-10
I get results from a mysql query, I scroll a bit to the right, and a blob shows up. It tries to display as an image, which it does as one with a red x, like it is invalid. It then spams this error:
14azpug.png

How should I go about fixing this, and what is the main problem? Thanks!

UPDATE: I don't really care if it shows the red X, so I figured out how to supress the error.
VB.NET:
    Private Sub DataGridView1_DataError(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewDataErrorEventArgs) Handles DataGridView1.DataError
        e.ThrowException = False
    End Sub
Thanks all, problem solved... if anyone has a better solution, feel free to post it.
 
Last edited:
Remove the column from the grid itself (not the datatable, the grid)

If the red X is no use to you then the entire column is a waste opf space
 
Back
Top