P V Mathew - 2017-04-07

To debug there are three alternative methods(given by the original developers)

  1. dump, 100% workable way:
    add to source logging code
    ? "hello"
    a:=1
    outlog(FILE,LINE,a,....)
    and see log file.

  2. dump command line debugger clip_dbg
    on 1th console run
    clip_app --stop / app started and wait debugger before MAIN procedure /
    or
    clip_app --debug / app run and wait signal "stop" from debuuger /
    on 2th console run
    clip_dbg <pid>
    and use commands for control clip_app:
    help
    ...</pid>

  3. iteractive text mode CLD-like (from clipper distrib) debugger:
    on 1th console run
    clip_app --stop / or --debug /
    on 2th console run
    clip_cld
    and use menu and command window for debugging:
    connect
    ? <varname>
    F7,F8,....</varname>