Hello,
I have a problem with textfield . There is a textfield in my app added to scrollpane , this textfield is sometimes selected by itself altough I do nothing , it gets the focus and the pointer is blinking at the textfield and ready to be entered a value. I only have this realted to textfield :
this sub is for when user changes a value it stores in kvs.
Any ideas about this ?
I have a problem with textfield . There is a textfield in my app added to scrollpane , this textfield is sometimes selected by itself altough I do nothing , it gets the focus and the pointer is blinking at the textfield and ready to be entered a value. I only have this realted to textfield :
B4X:
Sub txtadet_FocusChanged (HasFocus As Boolean)
Dim txt As TextField=Sender
If HasFocus=False Then
txtadet(txt.Tag).Text=txtadet(txt.Tag).Text.Replace(",",".")
kvsmycoins.Put(listmycoins.Get(txt.Tag),txtadet(txt.Tag).Text)
mycoinsdegerbul
End If
End Sub
this sub is for when user changes a value it stores in kvs.
Any ideas about this ?