DADiSP Downloads for NXT Energy Exploration Technologies
Updated December 16, 2008 - DADiSP 6.0 B19
Download Instructions
-
Click the DADiSP
Download Now button and OPEN or SAVE the file.
-
If DADiSP does not self-extract, run the self-installing
executable "dsp6b19nxt.exe" from the Start-Run Taskbar or a
MS-DOS command window.
-
Click on the DADiSP Icon and follow the instructions to
generate your Password Request Form.
Password Request
To fully enable your DADiSP, fax or email your password Request
Form and you will receive a password. Without
a password, you can still run
DADiSP in "Browser Mode".
DADiSP 6.0 B19 Features
This release adds the following capabilities to DADiSP
6.0:
NXT Custom Functions
- DELSHAPES deletes all shapes in a window.
- SAVEMIF saves all shapes in each window to individual
MIF files.
New Shape and Text Annotations
- Updated "Drawing Toolbar" supports rectangle, ellipse and
polygon filled or transparent shape creation.
- Full dialog based text, shape and line property editing.
- Associate arbitrary text tags with any shape or line.
- Reference text, shapes or lines by an object handle.
Object handles can get or set object properties using
a simple
handle.property syntax. For example:
color = handle.color; // get object color
handle.color = lred; // set color to light red
handle.text = "Example Text"; // set object text |
- Find any object based on property values. For example:
returns an array of handles to all the text, line or shape objects
in W1.
h = findhandle(W1, "color", lred); |
returns an array of handles to all the text, line or shape objects
in W1 with a color of light red.
h = findhandle(W1, "color", lred, "shape", "ellipse");
h.fill = lgreen; |
returns an array of handles to all the ellipse objects
in W1 with a border color of light red and then sets the
interior colors of those objects to light green. Any combination
of property values can be specified to locate objects.
The findtext function searches for text objects only
and findshape searches for shapes and
lines only.