Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Equal to or less than, equal to or greater than
Message
From
25/01/2019 14:21:36
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Equal to or less than, equal to or greater than
Miscellaneous
Thread ID:
01665734
Message ID:
01665734
Views:
95
Did you know you can use the equal to or less than and equal to or greater than operators in VFP to represent less than or equal to and greater than or equal to, respectively?

I didn't. I've written a VFP source code parser and was going through various source code examples and came across that comparison operator in code today and it works in the command window:
WAIT WINDOW (5 <= 7)  && Less than or equal to
WAIT WINDOW (5 =< 7)  && Equal to or less than

WAIT WINDOW (5 >= 7)  && Greater than or equal to
WAIT WINDOW (5 => 7)  && Equal to or greater than
Does not work with =! though. :-) The things I still learn about VFP ... not all subtlety and nuance.
Next
Reply
Map
View

Click here to load this message in the networking platform