TheSwamp

CAD Forums => CAD General => Topic started by: PHX cadie on August 06, 2020, 11:24:49 AM

Title: Re size Xlist Dialog Box
Post by: PHX cadie on August 06, 2020, 11:24:49 AM
We have a client with unusually long file names, so when I do a xl the only thing legible is the xref name, the layer name is cut off

I'm sure others have had this prob, but I didn't see any search results with this issue

If there is not an existing answer, pls don't go to any trouble, I've been doing a ncopy then finding layer   :uglystupid2:

- vanilla 2016, C3D 2017/18 -

Hope everyone is doing well, Mark stay safe, last I knew ur in the hurricane state. Thxs

Title: Re: Re size Xlist Dialog Box
Post by: Crank on August 06, 2020, 12:51:19 PM
There is also the -XLIST command so the result will placed on the command line.

XLISP is just a lisp from the EXPRESS TOOLS, so you can edit it so XLIST does the same as -XLIST :
Code: [Select]
(defun c:xlist ( / kUseDialog )
  (setq kUseDialog nil)
  (xlist kUseDialog)
)

Another option is to edit the width in the dialog file ( xlist.dcl )
Title: Re: Re size Xlist Dialog Box
Post by: PHX cadie on August 06, 2020, 02:33:21 PM
thank you Sir :)
Title: Re: Re size Xlist Dialog Box
Post by: T.Willey on August 06, 2020, 02:44:28 PM
Here is an old one I wrote when I didn't like what 'xlist' returned.  I still use it.
http://www.theswamp.org/index.php?topic=18121.0 (http://www.theswamp.org/index.php?topic=18121.0)