Hi,
I´m not posting any code - nothing extraordinary - because it is huge and I think a more general reply would be more helpfull for this kind of situation.
I have an object binded to the "Text" property of a textbox and its default-constructor value is "9" . When I change its text it works pretty fine.
Public Property tenLinh() As String
Get
Return tenLin
End Get
Set(ByVal value As String)
tenLin = value
End Set
End Property
The variable "value" stands for the text I have entered on the textbox (f. e. 10) and "tenlin" gets the right value (in this case, 10). The problem is when I try to use this new value. For example, the name of my object is "motor". When I try to use the value like: motor.tenLinh, it doesn´t return the correct value, but the old one (in the case, 9). Someone has any idea why this is happening ?
Att,
Ricardo S.