1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 16:45:53 +00:00
QB64-PE/internal/help/TO.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

27 lines
923 B
Plaintext

[[TO]] {{text|indicates a range of numerical values or an assignment of one value to another.}}
{{PageSyntax}}
::: DIM array(1 TO 100)
::: FOR i = 1 TO 10
::: _MAPUNICODE unicode TO asciicode
::: _SETALPHA alpha%, c1&amp; TO c2&amp;
* To specify a range in the [[CASE]] clause of a [[SELECT CASE]] statement.
* To specify the range for the loop counter in a [[FOR...NEXT]] loop.
* Array dimensions can be set to have a range of element numbers with TO.
* Specifies an [[ASCII]] character code to set with [[_MAPUNICODE]].
* Specifies a range of color values to set the transparencies with [[_SETALPHA]].
* To specify a range of records to lock or unlock in a networked environment, in the [[LOCK...UNLOCK]] statement.
* To separate the lower and upper bounds of an array specification in a [[DIM]] or [[REDIM]] statement.
''See also:''
* [[DIM]], [[FOR...NEXT]]
* [[_MAPUNICODE]]
* [[_SETALPHA]]
{{PageNavigation}}