thanx
Steve.
--
B C Jones
***Please remove "NOSPAM" from
email address when responding directly***
Steve Gordon wrote in message <01bea8d8$7e562650$02020202@pii400>...
>hi,
>there was a post to the group re hatch density and the variable associated
>with control of the number of lines in a hatch object.
>the message is no longer available to me and i need to increase the size on
>my r14 installation.
>could anyone rember what the variable name is and where to find it.
>i dont think it was in the setvar section .
>
>thanx
>
>Steve.
From the autocad Help:
MaxArray and MaxHatch Settings
AutoCAD will not allow an array that creates over 100000 objects. The
limit is set by the MaxArray setting in the registry. This limit can
be reset to any value between 100 and 10000000. The value can be
changed by changing the setting with the AutoLISP setenv function. For
example, to increase the value to 150000, you would enter the
following at the command line:
(setenv "MaxArray" "150000")
AutoCAD will not create a hatch pattern that consists of over 10000
segments. The limit is set by the MaxHatch setting in the registry.
This limit can be reset to any value between 100 and 10000000. The
value can be changed changing the setting with the setenv function.
For example, to decrease the value to 8000, you would type the
following at the command line:
(setenv "MaxHatch" "8000")
Note: The AutoLISP setenv function is case-sensitive so MaxArray and
MaxHatch must be entered as shown in the examples.
regards,
Mark
Steve Gordon wrote in message <01bea8d8$7e562650$02020202@pii400>...