K
kurt sune
Hi,
I am trying to do a property on a class with datatype decimal including
scale and precision.
Thus:
Private _Code2 As Decimal(3,2)
Public Property Code2() As Decimal(3,2)
Get
Return _Code2
End Get
Set(ByVal value As Decimal(3,2))
_Code2 = value
End Set
End Property
Unfortunately this doesnt work. Intellisense believes I am trying o do an
array.
Is it possible to include scale and precision in decimal datatype?
If not: Anybody has a tip on workaround? Raising error in Get/Set if value
is wrong?
/k
I am trying to do a property on a class with datatype decimal including
scale and precision.
Thus:
Private _Code2 As Decimal(3,2)
Public Property Code2() As Decimal(3,2)
Get
Return _Code2
End Get
Set(ByVal value As Decimal(3,2))
_Code2 = value
End Set
End Property
Unfortunately this doesnt work. Intellisense believes I am trying o do an
array.
Is it possible to include scale and precision in decimal datatype?
If not: Anybody has a tip on workaround? Raising error in Get/Set if value
is wrong?
/k