User contributions
Jump to navigation
Jump to search
- 03:40, 28 August 2009 diff hist +300 N RANDOMIZE Created page with ''''RANDOMIZE''' is used with a seed number to generate random(RND) numbers. ''Syntax:'' RANDOMIZE seednumber ''Example:'' RANDOMIZE TIMER Using a TIMER value insures t…'
- 03:32, 28 August 2009 diff hist +48 RANDOM
- 03:29, 28 August 2009 diff hist +324 N RANDOM Created page with ''''RANDOM''' is used in an OPEN statement to read(GET) or write(PUT) the file. It creates the file if none exists. ''Example:'' OPEN FileName$ FOR RANDOM AS #1 Rand…'
- 03:18, 28 August 2009 diff hist +10 SWAP
- 03:17, 28 August 2009 diff hist +34 SWAP
- 02:29, 28 August 2009 diff hist +160 N LTRIM$ Created page with 'LTRIM$ function is used to remove leading(left) spaces from a string. ''Example:'' num$ = LTRIM$(STR$(number)) 'removes leading space from the string return.'
- 02:24, 28 August 2009 diff hist +15 VAL
- 02:22, 28 August 2009 diff hist +5 VAL
- 02:21, 28 August 2009 diff hist +148 VAL
- 02:11, 28 August 2009 diff hist +246 N SWAP Created page with ''''SWAP''' is used to trade two variables or two array index(element) values. Swap can be used with string or number variable values. It is often used to sort array elements into…'
- 01:58, 28 August 2009 diff hist +239 OPEN
- 01:46, 28 August 2009 diff hist +212 N OPEN Created page with 'OPEN is used to open a file, serial or LPT port. Open can use 5 different modes: OUTPUT: Creates a new file or erases an existing file APPEND: Creates a new file o…'
- 01:38, 28 August 2009 diff hist +46 OUTPUT
- 01:36, 28 August 2009 diff hist +125 N OUTPUT Created page with 'OUTPUT is used in an OPEN statement for Files or Ports. '' Warning: '' OUTPUT mode erases all previous data in a file!'
- 00:51, 28 August 2009 diff hist +4 APPEND
- 00:50, 28 August 2009 diff hist +13 APPEND
- 00:48, 28 August 2009 diff hist +2 APPEND
- 00:47, 28 August 2009 diff hist +73 APPEND
- 00:42, 28 August 2009 diff hist +82 ATN