Less than

From Xojo Documentation

Operator

Used to determine whether one quantitative or alphabetic expression is smaller than another. String comparisons are case-insensitive.

Usage

result = expression1 < expression2

Part Type Description
result Boolean Returns True if expression1 is less than expression2.
expression1 String, Number, or date Any alphabetic or quantitative expression.
expression2 String, Number, or date Any alphabetic or quantitative expression.

Notes

A string is "less than" another string if it is first when the two strings are sorted alphabetically. Use StrComp to do a case-sensitive String comparison.

You can use Operator_Compare to define comparisons for classes.

Sample Code

This example uses the < operator to evaluate a and b.

Var a,b As Integer
If TextField1.Value <> "" and TextField2.Value <> "" Then
a = TextField1.Value.ToInteger
b = TextField2.Value.ToInteger
If a < b Then
MessageBox("A is Less Than B!")
Else
System.Beep
End If
Else
MessageBox("Please enter values into both boxes!")
End If

See Also

>, >=, <, <= =, <>, and StrComp operators; Operator_Compare function; Operator precedence.