Hi
VB.NET
I’ve made a object with some text properties and a image property.
I've made som reports (microsoft reports) in the project, but I can not find a way to show the image in the report.
Thanks in advance.
/Lars
VB.NET
I’ve made a object with some text properties and a image property.
Code:
Private _Billede As Image
Public Property Billede() As Image
Get
Return _Billede
End Get
Set(ByVal value As Image)
_Billede = value
End Set
End Property
Thanks in advance.
/Lars
Comment