Author Topic: XREF reviewing  (Read 1751 times)

0 Members and 1 Guest are viewing this topic.

nikospur

  • Guest
XREF reviewing
« on: April 16, 2013, 09:26:09 AM »
Hello everyone!
I´d like to know if anyone invented something for this yet:
We are managing a very large project with a complex tree of XRref´s. Due to the looming deadline, I fear that some corrections may be missed during review, so I´m looking for a tool that will do any or all of the following:
-Analyze a Windows folder and generate a tree (or list) showing which files reference which
-Look at a file and tell me where it is being referenced in other files within a Windows folder
Basically, the idea is that when I need to modify even slightly a top-hierarchy file, I can easily see at a glance all the files where it was inserted and that may need reviewing or adjusting, so as to not forget any.
Now I´ll cross my fingers and hope....

ronjonp

  • Needs a day job
  • Posts: 7529
Re: XREF reviewing
« Reply #1 on: April 16, 2013, 10:04:49 AM »

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

nikospur

  • Guest
Re: XREF reviewing
« Reply #2 on: April 16, 2013, 01:14:01 PM »
That looks very helpful, thanks!. Should I save it as .lsp and load it into autocad? or is it another type of file?

ronjonp

  • Needs a day job
  • Posts: 7529
Re: XREF reviewing
« Reply #3 on: April 16, 2013, 01:21:35 PM »
That looks very helpful, thanks!. Should I save it as .lsp and load it into autocad? or is it another type of file?

That is correct. Welcome to the swamp.  :-)

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

nikospur

  • Guest
Re: XREF reviewing
« Reply #4 on: April 16, 2013, 01:37:49 PM »
Thanks! Is there a symbol that replaces a space in the file name, so that it isn´t interpreted as an ENTER?

ronjonp

  • Needs a day job
  • Posts: 7529
Re: XREF reviewing
« Reply #5 on: April 16, 2013, 02:12:18 PM »
I'm not sure what you are asking?

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

nikospur

  • Guest
Re: XREF reviewing
« Reply #6 on: April 16, 2013, 02:24:34 PM »
When it asks for a string of text to search, I want to write down something like "first floor plan", but after hitting space bar, it takes that as en ENTER stroke and I only get to type the first word. I thought maybe something exists like "first%floor%plan" which would represent the spaces....

Lee Mac

  • Seagull
  • Posts: 12914
  • London, England
Re: XREF reviewing
« Reply #7 on: April 16, 2013, 02:27:29 PM »
After a cursory glance, change:
Code: [Select]
(setq CkStr (getstring "\n Enter name to check for [*]: "))to:
Code: [Select]
(setq CkStr (getstring t "\n Enter name to check for [*]: "))

nikospur

  • Guest
Re: XREF reviewing
« Reply #8 on: April 16, 2013, 03:01:24 PM »
thanks! I must learn to program sometime... I hate limits