ferryman
Jul 2 2008, 04:46 AM
How do assign Visual Studio 2005/VB.NET PcitureBox image to TfrxPictureView
pic = frx.FindObject("picModel")
pic.Picture = picLarge.Handle
frx.ShowReport()
This code unable assign image to report.
ferryman
Jul 5 2008, 06:52 PM
I have got answer.
Dim ms As New MemoryStream
picLarge.Image.Save(ms, Imaging.ImageFormat.Jpeg)
pic = .FindObject("picModel")
pic.LoadViewFromStream(ms)