I want to use the code like in vb6. It goes something like this:
How to do this in b4x?
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
How to do this in b4x?