Author Topic: Find Text in a Closed Drawing  (Read 11304 times)

0 Members and 1 Guest are viewing this topic.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« on: October 05, 2004, 02:20:06 PM »
I need to search a group of closed drawings for a text phrase. '30" ABOVE SLAB'
I don't necessarily need to change it, although it would be nice, but I do
need to identify which files it is in.
I don't have SuperFind and I believe it is no longer available.

Any ideas?
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

M-dub

  • Guest
Find Text in a Closed Drawing
« Reply #1 on: October 05, 2004, 02:24:15 PM »
Docupoint Discovery
www.docupoint.com

It's not a simple little app, but it works very well.  We use it here for all of our drawing searching and viewing needs.  I think eloquintet is now using it as well.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #2 on: October 05, 2004, 02:40:01 PM »
Thanks I'll give it a try. :)
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

M-dub

  • Guest
Find Text in a Closed Drawing
« Reply #3 on: October 05, 2004, 02:43:59 PM »
I really do like the program.  THIS thread might be of some help if you decide to try it out...

ronjonp

  • Needs a day job
  • Posts: 7529
Find Text in a Closed Drawing
« Reply #4 on: October 05, 2004, 03:43:59 PM »
Also try http://www.knownsoft.com/. Works well and is very fast.

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #5 on: October 05, 2004, 04:11:00 PM »
Try Superior Search found here
http://www.freewareseek.com/utils/filemanagers/S/0-3.html

Lot easyer to use.
Make sure you uncheck 'Skip Binary files' in the Advanced tab.
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #6 on: October 05, 2004, 04:15:21 PM »
Quote from: ronjonp
Also try http://www.knownsoft.com/. Works well and is very fast.

Thanks I'll try it too.
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

ELOQUINTET

  • Guest
Find Text in a Closed Drawing
« Reply #7 on: October 05, 2004, 05:11:17 PM »
yeah sounds like a job for drawing searcher to me but hmmm you'd have to index all the drawing first how many drawings you need to search cab?

Davez

  • Guest
Find Text in a Closed Drawing
« Reply #8 on: October 05, 2004, 05:25:17 PM »
Those work great!!

Now if there was one that could modify the string of text that was searched for, that would be awesome.

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Find Text in a Closed Drawing
« Reply #9 on: October 05, 2004, 06:11:47 PM »
ObjectDBX can scan drawings very quickly (without opening in them in the AutoCAD edit window) and it's free, though you'll have to roll yer own code (and have to run said code from a running instance of AutoCAD). I can scan drawings in the order of 10 to 100 per minute depending on size and what I'm scanning for.
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

hendie

  • Guest
Find Text in a Closed Drawing
« Reply #10 on: October 05, 2004, 06:17:35 PM »
I have a copy of superfind somewhere.. if I can find it (heh), but I can't remember which version of Acad it stops working on...

Jeff_M

  • King Gator
  • Posts: 4096
  • C3D user & customizer
Re: Find Text in a Closed Drawing
« Reply #11 on: October 06, 2004, 12:05:36 AM »
Quote from: CAB
I need to search a group of closed drawings for a text phrase. '30" ABOVE SLAB'
Any ideas?

I just placed a VBA project file "TextFind&Replace.dvb" to The Pond that allows you to select which directory to find drawings in, select which drawings to search, what search phrase and what to replace it with.

At this point it doesn't list which drawings it found the text and modified it, but it won't be too hard too add that feature. This is a work in progress and is based on code found at CADVault.com. In fact the entire browse for folders/files is all code from there.

If you'd like to try it out, I do suggest trying it on some 'sample' drawings first. Wildcrds for the search string are NOT supported, so be as complet in your string to search for as you must. For instance, just entering an "e" for the search and replacing it with "AB", will replace ALL e's in the drawing(s) with AB......

Feedback is welcome and will result in a more polished end product.

Oh, users of ACAD prior to 2004 must make sure that Object.DBX is available to use. If you aren't sure, run this little code snippet to be sure.
Code: [Select]

 (if (and (= (atoi (getvar "AcadVer")) 15)
      (not (vl-registry-read "HKEY_CLASSES_ROOT\\ObjectDBX.AxDbDocument\\CLSID"))
      )
(startapp "regsvr32.exe" (strcat "/s \"" (findfile "axdb15.dll") "\""))
)


Jeff

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #12 on: October 06, 2004, 07:37:40 AM »
Jeff
It stoped here
Dim bolMod As Boolean: bolMod = False

Compile Error
Invalid Outside Procedure
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

Jeff_M

  • King Gator
  • Posts: 4096
  • C3D user & customizer
Find Text in a Closed Drawing
« Reply #13 on: October 06, 2004, 10:33:32 AM »
Sorry CAB-
I had moved a line to the public area after testing that was supposed to be split up. If you edit the code to this it will work.
Code: [Select]

Dim strNew As String
Dim bolMod As Boolean 'EDIT this line


Private Sub UserForm_Initialize()
  'Set up
  Set objDbx = GetInterfaceObject("ObjectDBX.AxDbDocument")
  Me.Caption = "Object DBX Batch Process"
  ListBox1.MultiSelect = fmMultiSelectMulti
  CommandButton1.Caption = "Browse for folder"
  CommandButton2.Caption = "Process Selection"
  CommandButton3.Caption = "Exit"
  bolMod = False 'ADD this line
End Sub

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #14 on: October 06, 2004, 03:09:42 PM »
CAB,
Here is an ObjectDBX method thru vlisp.  Try it and let me know how it does for you.
Code: [Select]
(vl-load-com)

(defun *error* (msg)
  (princ "\nError: ")
  (princ msg)
  (princ)
  (if (and dbxdoc (not (vlax-object-released-p dbxdoc)))
    (vlax-release-object dbxdoc)
  )
  (gc)
  (princ)
)

(defun DLLRegister (dll)
  (startapp "regsvr32.exe" (strcat "/s \"" dll "\""))
)

(defun ProgID->ClassID (ProgID)
  (vl-registry-read
    (strcat "HKEY_CLASSES_ROOT\\" progid "\\CLSID")
  )
)

(defun DBX-Register (/)
  (if (/= (getvar "ACADVER") "15.0")
    (setq classname "ObjectDBX.AxDbDocument.16")
    (setq classname "ObjectDBX.AxDbDocument")
  )
  (cond
    ((ProgID->ClassID classname))
    ((and
       (setq server (findfile "AxDb15.dll"))
       (DLLRegister server)
       (ProgID->ClassID classname)
     )
     (ProgID->ClassID classname)
    )
    ((not (setq server (findfile "AxDb15.dll")))
     (alert
       "Error: Cannot locate ObjectDBX Type Library (AxDb15.dll)..."
     )
    )
    (T
     (DLLRegister "ObjectDBX.AxDbDocument")
     (or
       (ProgID->ClassID "ObjectDBX.AxDbDocument")
       (alert
"Error: Failed to register ObjectDBX ActiveX services..."
       )
     )
    )
  )
)

(defun findphrase (phrase document / count)
  (setq count 0)
  (vlax-for item (vla-get-modelspace document)
    (cond ((or (eq (vla-get-ObjectName item) "AcDbText")
      (eq (vla-get-ObjectName item) "AcDbMText")
  )
  (if (vl-string-search phrase (vla-get-textstring item))
    (setq count (1+ count))
  )
 )
 ((and (eq (vla-get-Objectname item) "AcDbBlockReference")
(eq (vla-get-hasattributes item) :vlax-true)
  )
  (foreach for-item (get_atts item)
    (if (vl-string-search phrase (vla-get-textstring for-item))
      (setq count (1+ count))
    )
  )
 )
    )
  )
  count
)

(defun get_atts (obj)
  (vlax-safearray->list
    (vlax-variant-value
      (vla-getattributes obj)
    )
  )
)

(defun c:tfar (/ file files str dbxdoc of lst wil classname)
  (setq file "")
  (while (setq file (getfiled "Select a file to replace text in" file "dwg" 128))
    (setq files (cons file files))
  )
  (cond ((not files) (princ "No files were selected."))
((not (setq str (getstring T "Enter search phrase?  ")))
(princ "\nSearch phrase is missing. ")
)
((not (DBX-Register)) (princ "Unable to load ObjectDBX."))
((not (setq dbxdoc (vla-GetInterfaceObject
    (vlax-get-acad-object)
    classname
  )
     )
)
(princ "Unable to load ObjectDBX.")
)
(T
(foreach f (reverse files)
  (setq of  (vl-catch-all-apply
      '(lambda ()
 (vlax-invoke-method dbxdoc 'open f)
)
    )
lst (if (vl-catch-all-error-p of)
      (list f "File was read only. ")
      (list f (findphrase str dbxdoc))
    )
wil (cons lst wil)
  )
)
)
  )
  (if (and dbxdoc (not (vlax-object-released-p dbxdoc)))
    (vlax-release-object dbxdoc)
  )
  (gc)
  (textscr)
  (mapcar '(lambda (x)
    (princ
      (strcat "\n"
      (car x)
      "\n"
      (cond ((eq (type (cadr x)) 'INT)
     (strcat (itoa (cadr x))
     " text entities matched your phrase."
     )
    )
    (T (cadr x))
      )
      )
    )
  )
 wil
  )
  (princ)
)

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #15 on: October 06, 2004, 03:14:12 PM »
Quote from: Jeff_M
Sorry CAB-
I had moved a line to the public area after testing that was supposed to be split up. If you edit the code to this it will work.


No workie :)
  Error
  Subfunction not defined
 
  REPLACE
 
 
Code: [Select]
objDbx.Open strFile
    For Each objEnt In objDbx.ModelSpace
      If TypeOf objEnt Is AcadMText Then
          Set objMtext = objEnt
          strTemp = objMtext.TextString
          intStr = InStr(1, strTemp, strOld, vbTextCompare)
          If intStr > 0 Then
              objMtext.TextString =   *** Replace  ***  (strTemp, strOld, strNew)
              bolMod = True
          End If
      ElseIf TypeOf objEnt Is AcadText Then
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #16 on: October 06, 2004, 03:19:42 PM »
Quote from: whdjr
CAB,
Here is an ObjectDBX method thru vlisp.  Try it and let me know how it does for you.

Looks interesting, I'll give it a try tonight. ( Work gets in the way )
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #17 on: October 06, 2004, 03:42:53 PM »
I forgot to give the instructions on how to use it.  When you run it it starts with a file open box and select a file to search in.  Then it returns to the file open box for another selection.  It continues this until you click cancel, then it continues the rest of the routine.

I can change this to select all dwg's within a folder if you want that functionality.
CHANGE THIS:
Code: [Select]
(defun c:tfar (/ file files str dbxdoc of lst wil classname)
  (setq file "")
  (while (setq file (getfiled "Select a file to replace text in" file "dwg" 128))
    (setq files (cons file files))
  )

TO THIS:
Code: [Select]
(defun c:tfar (/ path folder file files str dbxdoc of lst wil classname)
  (if (setq path (getfiled "Select a File" "" "dwg" (+ 4 128)))
    (setq folder (vl-filename-directory path)
 files (vl-directory-files folder "*.dwg" 1)
 files (mapcar '(lambda (x)
   (strcat folder "\\" x)
 )
files
)
    )
  )

For all files in a folder.

Jeff_M

  • King Gator
  • Posts: 4096
  • C3D user & customizer
Find Text in a Closed Drawing
« Reply #18 on: October 06, 2004, 05:38:12 PM »
Quote from: CAB

No workie :)
  Error
  Subfunction not defined
 
  REPLACE
 
 

What the hey?!?! Which version was this in (your sig line shows 2000 & 2004)? The REPLACE is a built-in Function to the VBA that shipped with 2002, and I'd imagine it should still work with 2004. If it's the 2000 version, a special function would need to be written (which I did before I found the Replace function and, stupidly, discarded since it obviously wasn't needed.....)  :?

As I said, "A work in progress". Thanks for trying though. Will try to play with it tonight after my wife goes to work (she got bumped to the graveyard shift, yuck).

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #19 on: October 06, 2004, 08:43:27 PM »
jEFF,
yES i WAS USING acad2000 8)  Uggh-caps
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #20 on: October 09, 2004, 02:29:30 PM »
Will got this:
Quote
Command: tfar
Enter search phrase?  trusses @ 16" oc

Error: ActiveX Server returned an error: Invalid index; reset after error
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #21 on: October 11, 2004, 09:42:29 AM »
CAB,

Are you trying this on A2K or A2004?
I couldn't reproduce the error.  Can you follow this in the VLIDE
and let me know where it hangs up at.

If A2K, then try this:
change:
Code: [Select]
(if (/= (getvar "ACADVER") "15.0")
    (setq classname "ObjectDBX.AxDbDocument.16")
    (setq classname "ObjectDBX.AxDbDocument")
  )

to:
Code: [Select]
(setq classname "ObjectDBX.AxDbDocument")
If A2004 then comment out this
Code: [Select]
;((not (DBX-Register)) (princ "Unable to load ObjectDBX."))
and change:
Code: [Select]
((not (setq dbxdoc (vla-GetInterfaceObject
    (vlax-get-acad-object)
    classname
  )
     )

to this:
Code: [Select]
((not (setq dbxdoc (vla-GetInterfaceObject
    (vlax-get-acad-object)
    "ObjectDBX.AxDbDocument.16"
  )
     )

Let me know what else happens.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #22 on: October 11, 2004, 11:30:54 AM »
Quote

Command: tfar
Enter search phrase?  trusses @ 16" oc

Error: ActiveX Server returned an error: Invalid index; reset after error

Command:


Error occurs here
Code: [Select]
(vlax-safearray->list
    (vlax-variant-value
      (vla-getattributes obj)
    )
  )


Using ACAD 2000, made the changes you suggested.
Do you want the DWG file?
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #23 on: October 11, 2004, 12:01:59 PM »
I still can't find an error.

Yes please send or post the drawing and the search phrase.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #24 on: October 11, 2004, 12:15:54 PM »
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #25 on: October 11, 2004, 01:38:36 PM »
CAB,

I looked over your drawing and it keeps crashing when it comes across your block "20GOBLT01".  I can't figure out why except that it says it has attributes, but when the program tries to get them its empty and therefore crashes.  I think I can catch the error with
vl-catch-all-apply and then I'll post the revision.

That's a strange one.  Anyone else got any ideas why a block would show a True flag for attributes, but then wouldn't have any? :?  :?  :?

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #26 on: October 11, 2004, 02:51:33 PM »
CAB,

Here is the revised code that works on your file here in my office.  I made a few modifications to show how many pieces of text, mtext, or attdefs you had in a drawing or wether that dwg was already open.

Give this one a spin and let me know. :wink:
Code: [Select]
(vl-load-com)

(defun *error* (msg)
  (princ "\nError: ")
  (princ msg)
  (princ)
  (if (and dbxdoc (not (vlax-object-released-p dbxdoc)))
    (vlax-release-object dbxdoc)
  )
  (gc)
  (princ)
)

(defun DLLRegister (dll)
  (startapp "regsvr32.exe" (strcat "/s \"" dll "\""))
)

(defun ProgID->ClassID (ProgID)
  (vl-registry-read
    (strcat "HKEY_CLASSES_ROOT\\" progid "\\CLSID")
  )
)

(defun DBX-Register (/)
  (setq classname "ObjectDBX.AxDbDocument")
  (cond
    ((ProgID->ClassID classname))
    ((and
       (setq server (findfile "AxDb15.dll"))
       (DLLRegister server)
       (ProgID->ClassID classname)
     )
     (ProgID->ClassID classname)
    )
    ((not (setq server (findfile "AxDb15.dll")))
     (alert
       "Error: Cannot locate ObjectDBX Type Library (AxDb15.dll)..."
     )
    )
    (T
     (DLLRegister "ObjectDBX.AxDbDocument")
     (or
       (ProgID->ClassID "ObjectDBX.AxDbDocument")
       (alert
"Error: Failed to register ObjectDBX ActiveX services..."
       )
     )
    )
  )
)

(defun findphrase (phrase document / txtcount mtxtcount attcount oName)
  (setq txtcount 0
mtxtcount 0
attcount 0
  )
  (vlax-for item (vla-get-modelspace document)
    (setq oName (vla-get-ObjectName item))
    (cond ((eq oName "AcDbText")
  (if (vl-string-search phrase (vla-get-textstring item))
    (setq txtcount (1+ txtcount))
  )
 )
 ((eq oName "AcDbMText")
  (if (vl-string-search phrase (vla-get-textstring item))
    (setq mtxtcount (1+ mtxtcount))
  )
 )
 ((and (eq oName "AcDbBlockReference")
(eq (vla-get-hasattributes item) :vlax-true)
  )
  (foreach for-item (get_atts item)
    (if (vl-string-search phrase (vla-get-textstring for-item))
      (setq attcount (1+ attcount))
    )
  )
 )
    )
  )
  (list txtcount mtxtcount attcount)
)

(defun get_atts (obj / val)
  (if (vl-catch-all-error-p
(vl-catch-all-apply
 '(lambda ()
    (setq val (vlax-safearray->list
(vlax-variant-value
  (vla-getattributes obj)
)
      )
    )
  )
)
      )
    nil
    val
  )
)

(defun c:tfar (/ file files str dbxdoc of lst wil classname)
  (setq file "")
  (while (setq file (getfiled "Select a file to replace text in" file "dwg" 128))
    (setq files (cons file files))
  )
  (cond ((not files) (princ "No files were selected."))
((not (setq str (getstring T "Enter search phrase?  ")))
(princ "\nSearch phrase is missing. ")
)
((not (DBX-Register)) (princ "Unable to load ObjectDBX."))
((not (setq dbxdoc (vla-GetInterfaceObject
    (vlax-get-acad-object)
    classname
  )
     )
)
(princ "Unable to load ObjectDBX.")
)
(T
(foreach f (reverse files)
  (setq of  (vl-catch-all-apply
      '(lambda ()
 (vlax-invoke-method dbxdoc 'open f)
)
    )
lst (if (vl-catch-all-error-p of)
      (list f "File was read only. ")
      (list f (findphrase str dbxdoc))
    )
wil (cons lst wil)
  )
)
)
  )
  (if (and dbxdoc (not (vlax-object-released-p dbxdoc)))
    (vlax-release-object dbxdoc)
  )
  (gc)
  (textscr)
  (mapcar '(lambda (x)
    (princ
      (strcat "\n"
      (car x)
      (cond ((eq (type (cadr x)) 'LIST)
     (apply 'strcat
    (mapcar '(lambda (y z)
(strcat "\n" (itoa y) z)
     )
    (cadr x)
    '(" text entities matched your phrase."
      " mtext entities matched your phrase."
      " attribute reference entities matched your phrase.\n"
     )
    )
     )
    )
    (T (strcat "\n" (cadr x))
      )
      )
    )
  )
 wil
  )
  (princ)
)

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #27 on: October 11, 2004, 03:17:03 PM »
Quote from: whdjr
CAB,

I looked over your drawing and it keeps crashing when it comes across your block "20GOBLT01".  I can't figure out why except that it says it has attributes, but when the program tries to get them its empty and therefore crashes.  I think I can catch the error with
vl-catch-all-apply and then I'll post the revision.

That's a strange one.  Anyone else got any ideas why a block would show a True flag for attributes, but then wouldn't have any? :?  :?  :?

Will,
The block is one created by Arch-T. The attribute has a tag 'Go-Bolt' which
displays on the screen and was used to make a slide so the slide has a
visible label in the original drawing but will not be displayed when inserted
as the attribute is empty.
That is my understanding of it anyway.
CAB
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Find Text in a Closed Drawing
« Reply #28 on: October 11, 2004, 03:29:45 PM »
Command: tfar
Enter search phrase?  trusses @16" oc

That seemed to work, although case sensitive.

Quote
Command: tfar
Enter search phrase?  trusses @ 16" oc

C:\Program Files\ACAD2000\=Active Projects\Steve Carter\4225 Morrison\4225
Morrison Master 1.DWG
0 text entities matched your phrase.
0 mtext entities matched your phrase.
0 attribute reference entities matched your phrase.

Command:
Command:
Command:
Command: _open
Command: tfar
Enter search phrase?  PRE MFG TRUSSES @ 16" OC

C:\Program Files\ACAD2000\=Active Projects\Steve Carter\4225 Morrison\4225
Morrison Master 1.DWG
3 text entities matched your phrase.
0 mtext entities matched your phrase.
0 attribute reference entities matched your phrase.

Command:
Command: PRE PREVIEW
Press ESC or ENTER to exit, or right-click to display shortcut menu.

Command: tfar
Enter search phrase?  TRUSSES @ 16" OC

C:\Program Files\ACAD2000\=Active Projects\Steve Carter\4225 Morrison\4225
Morrison Master 1.DWG
3 text entities matched your phrase.
0 mtext entities matched your phrase.
0 attribute reference entities matched your phrase.

Command:


Message when file was open:

Quote
Command: tfar
Enter search phrase?  trusses @16" oc

C:\Program Files\ACAD2000\=Active Projects\Steve Carter\4225 Morrison\4225
Morrison Master 1.DWG
File was read only.
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

whdjr

  • Guest
Find Text in a Closed Drawing
« Reply #29 on: October 11, 2004, 03:34:26 PM »
Glad that worked for you.