Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

error "internal error! insert.cpp3320 unknown error 1000".

1 REPLY 1
Reply
Message 1 of 2
alexandertv
236 Views, 1 Reply

error "internal error! insert.cpp3320 unknown error 1000".

 

Hi!

 

I add 2 files:

 

  1. Drawing File that include blocks with user data, which is stored in dictionaries,
  2. Lisp file – I’m using this file to create a new block.

 

After starting the lisp file  Acad crashes with the error

 

"internal error! insert.cpp3320 unknown error 1000".

 

 

 

 

 Thank you!

 

1 REPLY 1
Message 2 of 2
stevor
in reply to: alexandertv

Seems to work for the case that the BLOCK is not yet defined:

 (if (and (setq NameL "L11"  cpt '(0 55 0))
           (setq sset2 (ssget))    )
  (progn  (princ"\n Gets: ")(prin1 (sslength sset2))
    (if  (tblsearch "block" NameL)
     (command "_.-block" NameL "_Y" cpt sset2 "")            
     (command "_.-block" NameL cpt sset2 "")      
    ) ) ) ; if get

 

To control the response requirements for the case

that the 'L11' is existing block name,

you need to control the system variable 'EXPERT'

if not more.

S

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost