home *** CD-ROM | disk | FTP | other *** search
- ' This simple macro changes the Dimension text format
- ' and Coordinate Bar distance and angle formats,
- ' Place it on a custom toolbar for quick access.
- '
- ' Sys 101 changes the Dimension text format
- ' 0 = decimal,
- ' 1 = fractional,
- ' 2 = feet and decimal inches,
- ' 3 = feet and fractional inches
- '
- ' Sys 150 Changes the Coordinate bar angle display mode
- ' 0 = degrees,
- ' 1 = grads,
- ' 2 = radians,
- ' 3 = degrees-minutes-seconds,
- ' 4 = bearings
- '
- ' Sys 151 changes the Coordinate bar distance display mode
- ' 1 = decimal,
- ' 2 = fractions,
- ' 3 = feet + fractional inches
- '
- ' Start Program
- Sys(101) = 1
- Sys(150) = 0
- Sys(151) = 2
- End
-
-
-
-