You can do it because you have two monitors side by side and you can see half of the line on the first and the rest on the second ?Testing nested IIf:
Guess my number game.B4X:Private Sub Button1_Click Label1.Text = IIf(IsNumber(TextField1.Text) = False, "Invalid number", IIf(TextField1.Text > number, "My number is smaller", IIf(TextField1.Text < number, "My number is larger", "Well done!!!"))) End Sub