B4J Question Check if Combobox value is Null

sigster

Active Member
Licensed User
Longtime User
Hi
I am try to check if Combobox Value is Null in button

Is this not how it is done ? = Cbo_level.Value = 0

Regards
Sigster

B4X:
If name.Text.Length =0 OR login.Text.Length =0 OR Cbo_level.Value = 0 Then
     
        message.Text = "textbox cannot be empty" 
        Return False
End If
 
Top