B
Bruno Alexandre
Hi guys,
I'm wondering how can I manage to do this in my VB Class:
I have a property called Image01_url and other Image01_value
How can I have Image01.url and Image01.value instead?
--------- START CODE -----------------------------
Imports Microsoft.VisualBasic
Public Class ProductBoxes
Private img1u, img1v As String
Public Property image01_url() As String
Get
Return img1u
End Get
Set(ByVal value As String)
img1u = value
End Set
End Property
Public Property image01_value() As String
Get
Return img1v
End Get
Set(ByVal value As String)
img1v = value
End Set
End Property
End Class
--------- END CODE -------------------------------
--
Thank you in Advance.
Bruno Alexandre
(a Portuguese in Denmark)
I'm wondering how can I manage to do this in my VB Class:
I have a property called Image01_url and other Image01_value
How can I have Image01.url and Image01.value instead?
--------- START CODE -----------------------------
Imports Microsoft.VisualBasic
Public Class ProductBoxes
Private img1u, img1v As String
Public Property image01_url() As String
Get
Return img1u
End Get
Set(ByVal value As String)
img1u = value
End Set
End Property
Public Property image01_value() As String
Get
Return img1v
End Get
Set(ByVal value As String)
img1v = value
End Set
End Property
End Class
--------- END CODE -------------------------------
--
Thank you in Advance.
Bruno Alexandre
(a Portuguese in Denmark)