Pauli's software ->Vedit resources -> ZBasic programming 18. 10. 2005  

ZBasic Programming

ZBasic (by Zedcor / 32-bit Software) was a cross-platform compiler for MS-DOS, Apple II, Macintosh, CP/M, and TRS-80 computers. (Not to be confused with the ZBasic compiler used with ZX-series of microcontrollers.)

ZBasic is no more availeble, and it does not work with 64-bit Windows versions.

This package contains macros and a syntax file for ZBasic compiler. The zip file contains all the files described below.

Download: zbasic.zip   -   V1.0   -   6.3K

Zbasic.syn

Color syntax highlight file for ZBasic.

ZBfunc.vdm

Similar to the cfunk.vdm that comes with Vedit. Opens a window that displays list of functions and labels in a ZBasic source file. Use cursor keys to select the function and go to the location of the function or label.

ZB_ifs.vdm

Finds matching pair (begin or end of block) in the following command pairs:

LONGIF ... XELSE ... ENDIF
SELECT ... END SELECT
REPEAT ... UNTIL
WHILE ... WEND
DEF FN ... END FN

Zbasic.vtm

Template editing file for ZBasic. Expands the keyword when you press space key (or = after FOR).

Currently expands the following keywords:

"i " LONGIF...ENDIF
"ife " LONGIF...XELSE...ENDIF
"f " FOR
"FOR var ="   FOR var = ... NEXT var
"se " SELECT...CASE...CASE...END SELECT