Android Question Empty EditBox Alert

SumanR

Member
Licensed User
How to alert message for Empty EditBox when Execute action button in B4A?
 

Eme Fibonacci

Well-Known Member
Licensed User
Longtime User
And if you just type a space?

A better way

B4X:
if edit1.Text.Trim = "" then msgbox("editbox is empty","")
 
Upvote 0
Top