Guide for using UltraEdit with Blitz
Recent updates

20 Jan 2011:
I highly recommend IDEal: Professional Blitz IDE (free!) to work with Blitz2D, Blitz3D and BlitzPlus.

28 Apr 2004:
The best GUI specifically created for Blitz is Protean.
UltraEdit is specifically designed for flexible ASCII-style editing with any compiler.

Introduction

This is a copy as well as a revision of the original UltraBlitz site (created by Shane Monroe)
which unfortunately seems to disappear sometimes and also seems to no longer being updated.
The sole purpose of this page is to preserve the related useful information on combining BlitzBasic with UltraEdit.
I'm not sure if you should be reading this if you've never heard of UltraEdit though :P

Make sure to visit another good Blitz tips page here: Blitz for the masses
Which includes compiling instructions, macros (folding code, quick help), wordfiles (syntax highlighting) and shortcuts.
And also a BlitzCoder thread on how to integrate your Blitz help (online or offline) right into UltraEdit.

Here's a list of BlitzCC's (Compiler) parameters;
    Syntax: blitzcc  

      Where options can be:

        -h : Show help.
        -q : Operate quietly.
        +q : Operate very quietly.
        -d : Compile and run in debug mode.
        -k : Print a list of all keywords to stdout.
        +k : Print a list of all keywords plus 'quickhelp' to stdout.
        -o exefile : Create an executable called 'exefile'.

    Example: blitzcc -d myprogram.bb

      This will compile and run 'myprogram.bb' in debug mode.

    Undocumented switch: -c : Syntax check.

Setting Up Ultra-Blitz

(1) Add BlitzBasic to your environmental variables. (2) Get Syntax Highlighting Working (3) Getting the Compiler working (no debugger) (4) Getting the Compiler working (WITH debugger) (5) Getting the Compiler to Create an Executable (6) Adding Blitz icons to Compile tools (7) Adding Icons to a New Toolbar (8) Add Folding Functions to UltraEdit

Also check the Fold Code macro on Blitz Tips for the masses. (9) Add TagList Code Snippets to UltraEdit (10) Add Blitz Help to UltraEdit

First check the Quick Help macro on Blitz Tips for the masses.
Secondly, check this BlitzCoder thread on how to integrate your Blitz help (online or offline) right into UltraEdit.
And lastly you'll find a more primitive approach below;
This page was modified by Chance