Android Question How to get all empty b4xfloattextfield?

Chris Guanzon

Active Member
Licensed User
Longtime User
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

How to do this in b4x?
 

josejad

Expert
Licensed User
Longtime User
Check
 
Upvote 0
Top