Android Question basic if statement error

saunwin

Active Member
Licensed User
Longtime User
Missing Keyword: end sub error
can someone tell me where the error is here please
TIA


B4X:
Sub Button_Click
      
    If Button.Text="START" And TLRB.Checked=True
            Dim buffer() As Byte = Array As Byte(0x82)
            Button.Text="STOP"
        End If
           
End Sub
 

DonManfred

Expert
Licensed User
Longtime User
Where is the THEN after your IF?
 
Upvote 0
Top