Hi.
I am using a ultrapicturebox to display varbinary() field from SQL no probles.. works well
The problem i have is have been getting intermittent RED X for some data which is i suspect too big.
What wouldn't be a problem if i knew where to trap the error on my ultrapicturebox object.
The way it is now... once I get a RED-CROSS, I am forced to close the form and go back to it because I cannot see anymore pictures, regardless if the source is good or not.
Any help ? I am using 9.2.20092.2058
Using Microsoft PictureBox doesnt give me any problems
The big red X is what happens when something causes an Exception in the OnPaint of any control. I don't think there is any way to trap for this error, unless maybe you derive a control from UltraPictureBox and override the OnPaint and then wrap the call to the base inside a try...catch.