In my school I should program an application. I was tied to use case and select and so on.... But the problem is that I cant use bigger than and smaller than operators () in case...
I had to use the same old f#@$king Turbo Pascal as all the other guys in my class, because you CAN use operators in pascal in case...
DBP Example:
Select SOME_VARIABLE
Case 50
REM some other stuff happens
EndCase
EndSelect
Pascal Example:
Case Some_Variable Of
20..55 : REM Do something;
>55 : REM Do Something else (This works);
End;
Why hasn't this been included in DBPro yet???