I want to use the code like in vb6. It goes something like this:
B4X:
Dim f As Form
Dim ctrlTxt As Control
For Each f In Forms
For Each ctrlTxt In f.Controls
If TypeOf ctrlTxt Is FlatEdit Then
ctrlTxt.Text = ""
End If
Next
Next
Hi To all, i trying to get all B4XFloatTextField from my activity to change all LargeLabelTextSize at once. But if a use GetAllViewsRecursive he get the labels and edittexts from the activity, not the B4XFloatTextField View. I used this code to check all views: For Each v As View In...