Display images in the Image data type XTraReport
-
In his table with 1 column named 'Picture', Image data type, when you save the image successfully, but when the XTraReport intelligent display shows only the string column, but do not show columns Picture is, I wrote the following code to help you with you know, okay thanks in advance. xrPictureBox1.DataBindings.Add("Image", DataSource, "Picture");
-
In his table with 1 column named 'Picture', Image data type, when you save the image successfully, but when the XTraReport intelligent display shows only the string column, but do not show columns Picture is, I wrote the following code to help you with you know, okay thanks in advance. xrPictureBox1.DataBindings.Add("Image", DataSource, "Picture");
Who is this aimed at? Is this meant to be a question? I can't tell because there seems to be a lot of confusion there. If it's a question about displaying pictures in XTraReport, the DevXpress forums will be your best source for an answer. Try looking here[^] and entering XTraReport Picture as your search criteria.
I was brought up to respect my elders. I don't respect many people nowadays.
CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier -
Who is this aimed at? Is this meant to be a question? I can't tell because there seems to be a lot of confusion there. If it's a question about displaying pictures in XTraReport, the DevXpress forums will be your best source for an answer. Try looking here[^] and entering XTraReport Picture as your search criteria.
I was brought up to respect my elders. I don't respect many people nowadays.
CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easierMe non not as a, helps me with, me to do.
-
Me non not as a, helps me with, me to do.
What? I appreciate that English isn't your first language, but that sentence makes no sense to me.
I was brought up to respect my elders. I don't respect many people nowadays.
CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier -
What? I appreciate that English isn't your first language, but that sentence makes no sense to me.
I was brought up to respect my elders. I don't respect many people nowadays.
CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easierI bind text data type is correct, but the wrong type of image. You see if that helps. The code I wrote is as follows: Code in simpleButton4_Click
DataTable data = User.getInfo(); rptUser rpt = new rptUser(); rpt.DataSource = data; rpt.BinData(); rpt.ShowPreview();
Code in xtrareport
public void BinData()
{
xrTableCell3.DataBindings.Add("Text", DataSource, "username");
xrTableCell4.DataBindings.Add("Text", DataSource, "full_name");
xrPictureBox1.DataBindings.Add("Image", DataSource, "img");
}Please help me! :(