@smitaranjan OK this is a bit more involved for the layout select - Give this a try:
I'm using Lee Mac's List Box V1.2 for the layout select dialog: https://www.lee-mac.com/listbox.html
(defun c:LLINK (/ ch e ll ly ss)
(vl-load-com)
(initget "Select All")
(if (not (setq ch (getkword "\nSelect a Single Layout or All [Select/All] <Select>: ")))(setq ch "Select"))
(cond
((= ch "Select")
(setq ll...
Thanks everyone for the replies
I understand that importing external DWG files with Entmake is very difficult, maybe not even possible.
Many people (like you @pkenewell, thanks) have suggested me vla-InsertBlock, which I tried and it works. I will use that one.
Thanks again
Riccardo Ferrari
To remove those pesky legacy color tags in forum code I use this regex in Notepad++ : \[.*?\]
The "Find what" box should contain \[.*?\]
The "Replace with" box should be kept empty.
The "Wrap around" option should be selected
The "Search Mode" should be set to "Regular Expression".
Hitting the "Replace All" button will remove everything within Square Brackets including the brackets.