I don't know if I'm doing something wrong
I'm binding others controls and it is very easy, but the pictureBox doesn't work
I mean
I'm using sqlServer
I'm binding others controls and it is very easy, but the pictureBox doesn't work
I mean
Code:
textBoxAny.DataBindings.Add("Text",dataSet.Tables["MyTable"],"MyTextField");[b]//OK[/b]
pictureBoxAny.DataBindings.Add("Image",dataSet.Tables["MyTable"],"MyImageField");[b]//crash[/b]
I'm using sqlServer