Back


Newsgroup comp.cad.autocad 46596

Directory

Subject: Multiline -- From: jcalla@erols.com (John P. Callaway)
Subject: Re: Re-define attribute laden title blocks -- From: Rod Young
Subject: BLOCK REFERENCING ITSELF -- From: "ALLEN UGHOC"
Subject: Re: Self-Modifying Lisp Programs? -- From: (Reini Urban)
Subject: Re: Softdesk in play -- From: "Owen Wengerd"
Subject: Re: Lisp to Script format converter -- From: (Reini Urban)
Subject: Re: CAD that’s easy to learn & use SPAM SPAM SPAM -- From: "Tony Tanzillo"
Subject: Re: Softdesk > Autodesk ? -- From: (Reini Urban)
Subject: Re: AutoLISP puzzel -- From: "Tony Tanzillo"
Subject: Re: LISP QUESTION -- From: (Reini Urban)
Subject: Re: AutoLISP puzzel -- From: (Reini Urban)
Subject: Autolisp Analyzer -- From: "ADNAN OZUTKU"
Subject: Re: Plotting Rendered Drawings. -- From: "XABIER MARIÑO RODRÍGUEZ"
Subject: Re: Programita Lisp, in english -- From: jmilan@arquired.es (Javier Milan)
Subject: Re: Moving text in drawing takes forever -- From: "Owen Wengerd"
Subject: Cursor Menu and Accelerator -- From: Geraldo Brodbeck
Subject: Re: Polyline Joiner -- From: vnestr@netvision.net.il (Vladimir Nesterovsky)
Subject: Re: Vital LISP 2.0 Question ??? -- From: vnestr@netvision.net.il (Vladimir Nesterovsky)
Subject: Re: R12 DOS+ Win95 + Dongle = Dongle not Recognized. HELP! -- From: bsawyer@ibm.net (Brian Sawyer)
Subject: Re: BLOCK REFERENCING ITSELF -- From: Lu
Subject: Re: Network plotting with ACAD12 (DOS) -- From: zechner@email.archlab.tuwien.ac.at (Christoph Zechner)
Subject: Re: HELP! Solid Modeling question -- From: Dave Rich
Subject: Cursor menu, accelerator keys -- From: Geraldo Brodbeck
Subject: Problems plotting from ACAD LT 2c1 to HP Draftmaster RX plotter -- From: Ray Tham
Subject: Problems plotting from ACAD LT 2c1 to HP Draftmaster RX plotter -- From: Ray Tham
Subject: Re: BLOCK REFERENCING ITSELF -- From: bfeuchuk@jumppoint.com (Bruce Feuchuk)
Subject: Re: AutoCAD and Parametric Drafting -- From: wmill@execpc.com (Tony T)
Subject: Re: Inserting into MS WORD -- From: "Sergei M. Komarov"
Subject: how to delete a layer -- From: Stephen Chai
Subject: Re: acad 12 dxf problems -- From: "Sergei M. Komarov"
Subject: Re: AutoCad Viewer -- From: Jon Genova
Subject: Re: R13c4a crashes system on each exit -- From: Jon Genova
Subject: Generic CAD 6.1 to AutoCAD??? -- From: "Ben T. Eisemann"
Subject: Re: Mechanical CAD Standards -- From: Jon Genova
Subject: Re: how to delete a layer -- From: johndoe@nowhere.com (YoMaMa)
Subject: Re: Whip Plugin/internet tools -- From: Dave Stroud
Subject: ---===<<< Autocad with the look & feel of CATIA >>>===--- -- From: mcclomp@introweb.nl
Subject: Re: help exoprting 3ds -- From: Bill Wollaston
Subject: mcad:sketch forms multiple profiles? what the hell it that? -- From: screamman@aol.com (Screamman)
Subject: Re: how to delete a layer -- From: dyoung@mcwi.com (Darren Young)

Articles

Subject: Multiline
From: jcalla@erols.com (John P. Callaway)
Date: Sat, 21 Dec 1996 02:26:03 GMT
Could someone tell me of a Web site or a FTP site were I can download
some  mutiline(mln) files?
			JPC
Return to Top
Subject: Re: Re-define attribute laden title blocks
From: Rod Young
Date: Fri, 20 Dec 1996 23:11:26 -0800
Keith Biggs wrote:
> 
> I want to re-define the attributes in my title blocks and re-insert this into
> an existing drawing. The title block will re-define, however, the changes are
> not visible. The only way I can get around this is to erase the old title
> block and insert the new one and fill in the new values one at time. Needless
> to say, I do not want to do this to all of my drawings invidually.
> 
> Any Suggestions?
> 
> Keith
> civic@direct.ca
The following code is offered as an example.  It shows the new attribute
values as hard coded but they could just as easily be coming from a
linked database, text file or whatever.
Our program RUN LISP can run programs like this over hundreds of
drawings at a time in batch mode.
;updblk function to update a title block in unattended batch mode
;assuming that your title block is named TBLOCK and has attributes of 
;project
;designedby
;checkedby
;etc
(defun updblk()
	(setq theblk(ssget "X" '((2 . "TBLOCK"))))	;I assume that there is only
one such block in the drawings
	;get the head
	(setq head(ssname theblk 0))
	;update the first attribute value
	(setq attr1(entnext head))
	(setq dummy (entget attr1))
	(setq dummy(subst (cons 1 "The revised project name")(assoc 1
dummy)dummy))	
	(entmod dummy)
	;update the second attribute value
	(setq attr2(entnext attr1))
	(setq dummy(entget attr2))
	(setq dummy(subst (cons 1 "The revised designed by value")(assoc 1
dummy)dummy))
	(entmod dummy)
	;update the third attribute value
	(setq attr3(entnext attr2))
	(setq dummy(entget attr3))
	(setq dummy(subst (cons 1 "The revised checked by value")(assoc 1
dummy)dummy))
	(entmod dummy)
	;etc etc etc
	(entupd head)
	(setq theblk nil)
)
(updblk)	;make this program 'load and go' batch compatible
-- 
  Sierra Hermitage		
  If this ftp site is busy, go to  and search
for mirror
  sites worldwide where these demos may also be downloaded.	
  RUN LISP - batch acad R12

  RUN LISP - batch acad R13

  DIRECTORY TAMER - Simple EDM

  BATCH PLOT - auto plot dwgs

  AUTO LOADER - alisp manage

  AUTOBMP  - dwg > bmp	

  DWGDOC - attach file to dwg

  FINDVARS - alisp helper

Return to Top
Subject: BLOCK REFERENCING ITSELF
From: "ALLEN UGHOC"
Date: 21 Dec 1996 08:11:19 GMT
Hello,
At times when I bring in a block from one of my libraries, I get the
message, " block references itself, invalid operation, or words to that
effect. When time is very important, that message is annoying ! I have to
go back to the utilities option and rename that particular dwg in order for
me to use it. What causes that situation, and how can I avoid it ?
 Thanks...Al
Return to Top
Subject: Re: Self-Modifying Lisp Programs?
From: (Reini Urban)
Date: Sat, 21 Dec 1996 08:33:39 GMT
 (myself) posted to early a self.modifying
lisp code.
Oops! 
I'm sorry but I should have made a lisp puzzle out of this. 
Or does anyone has tried a similar piece? (with eval and so on...)
Anyway, next time, same station. Happy holidays! 
Reini
Return to Top
Subject: Re: Softdesk in play
From: "Owen Wengerd"
Date: 20 Dec 1996 21:55:42 GMT
Tony:
  Keep us posted on the Softdesk merger.  I believe you are correct that
PTC is the unidentified third party. :)
-- 
 Owen Wengerd   [ManuSoft]
 ** AutoCAD Wizard At Large **
 http://www.manusoft.com
 owenw@manusoft.com
 Compuserve: 71324,3252
Tony Tanzillo  wrote in article
<01bbee98$1dadf500$147074cf@pentiumpro>...
> It appears that Softdesk is in play, and is the target of
> a hostile acquisition by a third party. As a result, Autodesk
> has raised its offer from $12 to $15/share:
> [...]
> There is a possibility that the 3rd party that is showing
> interest in Softdesk is Parametric Technology Corp., which
> has recently made it very clear that it has its ironsights 
> aimed squarely at Autodesk.
Return to Top
Subject: Re: Lisp to Script format converter
From: (Reini Urban)
Date: Sat, 21 Dec 1996 08:37:44 GMT
Mac Baker  wrote:
>I have a great collection of macos that are wonderful.
>Tuesday I'm being forced to work with acad-lt.  How can I convert my
>lisp files over to a script format?
Impossible, but you can convert them manually to Visual Basic.
Regards
Reini Urban http://xarch.tu-graz.ac.at/autocad/
I'll be extremely surprised if the opinions expressed in this message
reflect those of the Microsoft (tm) Corporation. They make me say that.
Return to Top
Subject: Re: CAD that’s easy to learn & use SPAM SPAM SPAM
From: "Tony Tanzillo"
Date: 21 Dec 1996 07:42:47 GMT
Still spamming us, eh?
-- 
/*******************************************************/ 
/*   Tony Tanzillo     Design Automation Consulting    */
/*    Expert AutoCAD Programming and Customization     */
/* --------------------------------------------------- */
/*      Co-Author of Maximizing AutoCAD R13 and        */
/*        Maximizing AutoLISP for AutoCAD R13          */
/* --------------------------------------------------- */
/*             71241.2067@compuserve.com               */
/*           tony.tanzillo@worldnet.att.net            */
/*   http://ourworld.compuserve.com/homepages/tonyt    */
/*******************************************************/
Olaf E. Brauner <74471.2304@CompuServe.COM> wrote in article
<59f6p7$98d$1@mhade.production.compuserve.com>...
> Take a moment to find out about a professional CAD product you 
> can learn to use on your own in 2 days, that has been in use 
> for 20 years and will out produce all other systems! 
> 
> The product is IDRAW and you can find it at:   
> http://www.designfutures.com
> 
> -- 
> Olaf E. Brauner
> 
Return to Top
Subject: Re: Softdesk > Autodesk ?
From: (Reini Urban)
Date: Sat, 21 Dec 1996 07:51:13 GMT
Another question comes to my mind:
Anyone knows how Softdesk was involved into the IAI (the Industry
Alliance for Interoperability) for the forthcoming AEC flavoured R14
version. and the IFC ?
For example I know that autodesk, softdesk, bentley and nemetschek
worked together on this project.
Maybe it was cheaper to buy their developments to be able to release a 
better AEC version than the competitors.
---
Reini Urban, TU Graz, Architecture & X-RAY
 http://xarch.tu-graz.ac.at/autocad/
Attention! From: header is garbled on purpose!
(defun tail (l n)
  (cond ((zerop n) l)
        (t (tail (cdr l) (1- n)))))
Return to Top
Subject: Re: AutoLISP puzzel
From: "Tony Tanzillo"
Date: 21 Dec 1996 07:53:08 GMT
Grow up little boy.
-- 
/*******************************************************/ 
/*   Tony Tanzillo     Design Automation Consulting    */
/*    Expert AutoCAD Programming and Customization     */
/* --------------------------------------------------- */
/*      Co-Author of Maximizing AutoCAD R13 and        */
/*        Maximizing AutoLISP for AutoCAD R13          */
/* --------------------------------------------------- */
/*             71241.2067@compuserve.com               */
/*           tony.tanzillo@worldnet.att.net            */
/*   http://ourworld.compuserve.com/homepages/tonyt    */
/*******************************************************/
Tim Kirwan  wrote in article <32BB5E2D.424B@eazy.net>...
> Tony the total sell out strikes again
> 
Return to Top
Subject: Re: LISP QUESTION
From: (Reini Urban)
Date: Sat, 21 Dec 1996 08:23:50 GMT
"Tony Tanzillo"  wrote the 2nd time:
>(defun thawed_layer_list ( / rslt layer)
>   (while (setq layer (tblnext "layer" (not layer)))
>      (if (zerop (logand 1 (cdr (assoc 70 layer))))
>         (setq rslt (append (list (cdr (assoc 2 layer))))))
>      )
>   (acad_strlsort rslt)
>)
Once using append is forgiven but the 2nd time it's a sin. :)
Better use (setq rslt (cons (cdr (assoc 2 layer)) rslt)))
BTW: Tony, you forgot the 2nd rslt in the append functions, but this can
happen.
append is generally speaking very slow and only appropriate for merging
trees. Esp. when you sort the list afterwards, cons is much better. just
hooks a pointer to the front of the list and needs only memory for one
new node. append parses all lists as arguments, mallocs the resulting
list and releases memory for the old list. And this n times. (From a c
programmers view awful, brrhh!)
(defun dummy (lst)
  (while lst
    (setq newlst (cons (car lst) newlst)
          lst (cdr lst)))
  (reverse newlst))
is even faster than
(defun dummy (lst)
  (while lst
    (setq newlst (append (list (car lst)) newlst)
          lst (cdr lst)))
  newlst
)
with reverse it needs linear time (n+n) and only n new nodes (called
"conses" in lisp).
The append code needs n+n time too but n*n/2 nodes.
(in the general case even n*n/2 time, but here the first argument is
very short, only one node)
To be very correct:
This depends on the implementation of reverse. reverse needs O(n) time
and n nodes.
The undocumented (reversip) function (in ACADLC.EXP) swaps the nodes in
place, so needs 0 nodes. ("reverse in place": Is this correct serge?)
I'm getting better and better in understanding undocumented functions.
:)
---
Reini Urban, TU Graz, Architecture & X-RAY
 http://xarch.tu-graz.ac.at/autocad/
Attention! From: header is garbled on purpose!
(defun tail (l n)
  (cond ((zerop n) l)
        (t (tail (cdr l) (1- n)))))
Return to Top
Subject: Re: AutoLISP puzzel
From: (Reini Urban)
Date: Sat, 21 Dec 1996 08:35:52 GMT
"Tony Tanzillo"  wrote:
>Grow up little boy.
Better correct my attempt.
Reini
Return to Top
Subject: Autolisp Analyzer
From: "ADNAN OZUTKU"
Date: 21 Dec 1996 09:33:26 GMT
Hello,
 Can enybody give  me a free download adress, where I can find a AutoLISP
Analyzer ?
Return to Top
Subject: Re: Plotting Rendered Drawings.
From: "XABIER MARIÑO RODRÍGUEZ"
Date: 21 Dec 1996 10:35:34 GMT
I think the best way to do this is exporting the render image in TGA format
to Photoshop, Corel Photopaint, or any software like these, then plot.
Merry Christmas
-- 
Xabier Mariño Rodríguez
Vigo. Spain
arq-xabi@redestb.es
STORAGECAD  escribió en artículo
<19961217194400.OAA10446@ladder01.news.aol.com>...
> I am currently running Autocad R13c4a with Windows 95.
> My plotter is HP Design Jet 330 upgraded to a 350c.
> I would like to plot a final drawing with an elevation, floor plan and a
> 3D view that is rendered all on the same sheet of paper.  I would like to
> know what I need in order to do this.  
> 
Return to Top
Subject: Re: Programita Lisp, in english
From: jmilan@arquired.es (Javier Milan)
Date: Fri, 20 Dec 1996 15:34:12 GMT
lwehnes@onr.com wrote:
>>------------------
>>jmilan@arquired.es
>>------------------
>The following with english subtitles
>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
>;;TRIDI.lsp                                  ;
>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Thank you for the translation! :-) Did you like the program?
I think it could be useful. 
Merry Xmas!
Saludos,
Javier.
------------------
jmilan@arquired.es
------------------
Return to Top
Subject: Re: Moving text in drawing takes forever
From: "Owen Wengerd"
Date: 20 Dec 1996 21:41:41 GMT
Harold:
  Try setting your FONTALT system variable to "." (period = none), then
reloading the drawing.  If AutoCAD has to use an alternate font, you will
see this sort of slowdown. :)
-- 
 Owen Wengerd   [ManuSoft]
 ** AutoCAD Wizard At Large **
 http://www.manusoft.com
 owenw@manusoft.com
 Compuserve: 71324,3252
Harold Stonebraker  wrote in article
<32B448D5.6B12@erols.com>...
> I am trying to move and edit text in R13c4 from an old ACAD R12 Windows 
> drawing and the text editing and moving is taking forever.  Is anyone 
> else having this proble?
> 
> My machine is a 133 MHZ Pentium w/ 32 RAM and 3.2 Gig
> 
> Any HELP would be greatly appriciated
> 
Return to Top
Subject: Cursor Menu and Accelerator
From: Geraldo Brodbeck
Date: Sat, 21 Dec 1996 09:05:06 -0300
I need to modify the AutoCAD R13 Windows cursor menu (***POP0 section) 
and the accelerator keys (***ACCELERATOR section). I wrote a new menu 
and tried using the Partial Menu Load (menuload command) to provide
more compatibility with other installed applications (as Autodesk 
suggested). But AutoCAD doesn't change these menus, it simply ignores
my POP0 and ACCELERATOR menus. I think I must change the original 
ACAD.MNU, instead of partial menu loading?
Waiting for an answer, Thanks
Geraldo Brodbeck
brodbeck@tca.com.br
Return to Top
Subject: Re: Polyline Joiner
From: vnestr@netvision.net.il (Vladimir Nesterovsky)
Date: Sat, 21 Dec 1996 11:55:47 GMT
On Fri, 20 Dec 1996 07:12:10 GMT,  - jeeper@halcyon.com (Dennis Shinn) wrote
in comp.cad.autocad:
>"Tom White"  wrote:
>>Anyone know of a lisp routine or other... that will join overlapped
>>polylines?
>TCI publishes a product called Polymorph that has a raft of polyline utilities. 
The URL is http://www.tcicorp.com/
--
Vladimir Nesterovsky    ADS/LISP/C/C++ etc

Return to Top
Subject: Re: Vital LISP 2.0 Question ???
From: vnestr@netvision.net.il (Vladimir Nesterovsky)
Date: Sat, 21 Dec 1996 12:10:07 GMT
On 20 Dec 1996 03:02:32 GMT,  - "Tony Tanzillo"
 wrote in comp.cad.autocad:
>Actually, Vital LISP is not a compiler it all. It generates
>p-code (like Visual Basic). Hence, the size of the resulting
>ARX is largely due to the fact that there is a p-code runtime 
>interpreter bound into it.
What's a p-code?
--
Vladimir Nesterovsky    ADS/LISP/C/C++ etc

Return to Top
Subject: Re: R12 DOS+ Win95 + Dongle = Dongle not Recognized. HELP!
From: bsawyer@ibm.net (Brian Sawyer)
Date: Sat, 21 Dec 1996 13:23:48 GMT
	Would you expand a bit on setting up R12 DOS to run in a Win95
Dos shell?  I have recently added enough ram that I would like to
this, as I have never gotten as productive in R13 as I was in R12 Dos,
but need to use my other W95 programs.  Whart are your settings that
allow this?
On 14 Dec 1996 07:13:25 -0800, hopltd@giasdl01.vsnl.net.in (G Rajesh)
wrote:
>This is surprising. I also have a similar setup , but whenever I want to
>work on 3D Studio , I reboot my system in MS DOS MODE and start working 
>on it. After working in 3DS , I exit the program and start Windows 95 by 
>typing EXIT. It automatically starts and R12 works fine in a DOS SHELL.
>G.Rajesh
>//Autodesk Product Support on the Internet//
>
>
Return to Top
Subject: Re: BLOCK REFERENCING ITSELF
From: Lu
Date: Fri, 20 Dec 1996 21:40:43 -0800
ALLEN UGHOC wrote:
> 
> Hello,
> At times when I bring in a block from one of my libraries, I get the
> message, " block references itself, invalid operation, or words to that
> effect. When time is very important, that message is annoying ! I have to
> go back to the utilities option and rename that particular dwg in order for
> me to use it. What causes that situation, and how can I avoid it ?
>  Thanks...Al
Hi Al,
For example;
In a drawing named T.DWG, there is a block called T.
If you attempt to insert this drawing in another drawing *unexploaded* it 
will reference itself.
An analogy to this is listing the assembly part number as one of the 
items in the assembly.   When someone goes to collect the items for the 
assembly, they will get to the assembly number and then restart at the 
top of the item list.  This is an endless loop, cat chasing it's tail.
Hope this helps,
Lu
//------------------------------------------------------------------
//  When all else fails, read the book.
//  CAD\Tek Home Page: http://www.cad-tek.com
//------------------------------------------------------------------
Return to Top
Subject: Re: Network plotting with ACAD12 (DOS)
From: zechner@email.archlab.tuwien.ac.at (Christoph Zechner)
Date: Sat, 21 Dec 1996 15:03:13 GMT
zechner@email.archlab.tuwien.ac.at (Christoph Zechner)
wrote:
>I have problems to configure ACAD 12 c1 for DOS to plot to a
>file and then starting a batch file, that should copy the
>plot file to a network plotter. 
>I have modified my acad start batch by setting the ACADPLCMD
>to a batch file called plot.bat.
>acad start batch:
>SET ACADPLCMD=plot.bat %s
>plot.bat:
>copy %1 /b lpt1:
>When using the filename AUTOSPOOL, the plot files are
>created in the spool directory, which I have configured, but
>the batch file, that should copy the files to the plotter
>does not execute. What is wrong? 
After changing the syntax of the plot.bat to "copy %1 /b
lpt1" (without doublepoints behind lpt1), it is working.
Thank you for your answers
cu Christoph
Return to Top
Subject: Re: HELP! Solid Modeling question
From: Dave Rich
Date: Fri, 20 Dec 1996 22:34:22 -0800
Briah,
I am not familiar with Acad Solids.  If it supports a variable radius 
fillet as do some of the other packages, you could do so on a square 
extrusion with or without draft.
Dave Rich
=============================
briah@indy.net wrote:
> 
> I need to "extrude", if you will, one shape into another.
> e.g Imagine a tube that is square on one end but circular on the
> opposite.  The "parent" geometry may vary in complexity,
> We've been doing this for years on Anicam and now Smartcam but when it
> comes to Autocad...stump city.   Any suggestions?
> thanks
> briah@indy.net
Return to Top
Subject: Cursor menu, accelerator keys
From: Geraldo Brodbeck
Date: Sat, 21 Dec 1996 13:48:14 -0300
To modify the AutoCAD R13c4 Windows menus, Autodesk suggest to add
another menus using the MENULOAD command. But I want to modify the
Cursor Menu (called ***POP0) and the accelerator keys
(called ***ACCELERATOR). After using MENULOAD to load a menu with
these sections, I can't make them active and with other sections
worked well.
I think the only way to change these sections is modifying the original
AutoCAD menu.
Is it right?
--
Geraldo Brodbeck
RS, Brazil
mailto:brodbeck@tca.com.br
Return to Top
Subject: Problems plotting from ACAD LT 2c1 to HP Draftmaster RX plotter
From: Ray Tham
Date: 20 Dec 1996 15:24:14 GMT
We have been having problems plotting from ACAD LT 2c1 in Windows to the HP
Draftmaster RX plotter. Data is plotted in the wrong places, however the stuff 
is legible.
We have Emailed to Autodesk to no avail. Have tried HP as well, so far all
documentation points to Autodesk providing the plotter driver not HP.
We think we need a plotter driver which is written to drive the Draftmaster RX
from ACAD LT 2c1 in WINDOWS and uses the HP/GL2 software (NOT the HP/GL)
We have tried the software in HP WWW software support without any luck, FYI
these are the self-extracting files containing the drivers: GL14EN.EXE,
HPGLW14.EXE both dated Sep 94. We had the same problems plus pen movements 
were NOT optimised (could be because it is plotting output all over the
place)
Any help would be greatly appreciated !!!
Ray Tham
Return to Top
Subject: Problems plotting from ACAD LT 2c1 to HP Draftmaster RX plotter
From: Ray Tham
Date: 20 Dec 1996 15:24:39 GMT
We have been having problems plotting from ACAD LT 2c1 in Windows to the HP
Draftmaster RX plotter. Data is plotted in the wrong places, however the stuff 
is legible.
We have Emailed to Autodesk to no avail. Have tried HP as well, so far all
documentation points to Autodesk providing the plotter driver not HP.
We think we need a plotter driver which is written to drive the Draftmaster RX
from ACAD LT 2c1 in WINDOWS and uses the HP/GL2 software (NOT the HP/GL)
We have tried the software in HP WWW software support without any luck, FYI
these are the self-extracting files containing the drivers: GL14EN.EXE,
HPGLW14.EXE both dated Sep 94. We had the same problems plus pen movements 
were NOT optimised (could be because it is plotting output all over the
place)
Any help would be greatly appreciated !!!
Ray Tham
Return to Top
Subject: Re: BLOCK REFERENCING ITSELF
From: bfeuchuk@jumppoint.com (Bruce Feuchuk)
Date: Sat, 21 Dec 1996 15:52:26 GMT
With Deft Fingers, "ALLEN UGHOC"  wrote:
>At times when I bring in a block from one of my libraries, I get the
>message, " block references itself, invalid operation, or words to that
>effect. When time is very important, that message is annoying ! I have to
>go back to the utilities option and rename that particular dwg in order for
>me to use it. What causes that situation, and how can I avoid it ?
This will happen IF you have a block within your 'original' block of the
_same_ name as your parent block!
ie:  You insert an Original block called XXX.  However, you created the
entities within your original block and have a nested block also called XXX.
The solution is to change one of the names (either rename the block in the
original block or the main block itself!)
 Regards,
  Bruce
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
         The first time you go out after your wife's birthday, you
               will see the gift you gave her marked down 50%
     Corollary: she will assume you choose it because it was so cheap!
             (live from the West End of Vancouver, B.C. Canada)
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Return to Top
Subject: Re: AutoCAD and Parametric Drafting
From: wmill@execpc.com (Tony T)
Date: Sat, 21 Dec 1996 16:32:49 GMT
On 20 Dec 1996 07:06:39 -0800, hopltd@giasdl01.vsnl.net.in (G Rajesh)
wrote:
>"S.A.Jacklin"  wrote:
>
>>Does anyone know of a lisp routine / ADS application that will allow me
>>to parametrically draft.
>>	i.e. Draw a line put a dimension on it, and then be able to edit the
>>dimension (change the length) and the line length changes
>>corespondingly.
>>-- 
>>---------------------------------------------------------------------
>>|S.A.Jacklin@ncl.ac.uk    (WORK) | Being Ginger is BAD              |
>>|Steve@wackoj.demon.co.uk (HOME) | Being a Student is BAD           |
>>|www.wackoj.demon.co.uk          | But being a Ginger Student ..... |
>>
>
>Have you seen the demo of Autodesk Designer add on to AutoCAD.
>Call up your nearest Autodesk dealer for more info.
>
>Apart from this there are lot of third part programs also to do this type
>of 2D drafting whereas Designer is a Bidirectional parametric feature 
>based solid modeler.(2D & 3D)
Ok...so there are a lot of them?? Do they have names?
Tony
>
>G.Rajesh
>//Autodesk Product Support on the Internet//
********************************
"Never laugh at live dragons..."
J.R.R. Tolkien, The Hobbit
*********************************
Return to Top
Subject: Re: Inserting into MS WORD
From: "Sergei M. Komarov"
Date: 21 Dec 1996 17:33:48 +0200
Matt Wilson on 20 Dec wrote:
>   I am having trouble with the line quality of a drawing in a word
>   document after it has been copy and pasted from an autocad drawing to a
>   word document. anyone got any ideas???
>
Hi Matt,
try to configure AutoCAD Plotter for a device, which supports HPGL or HPGL/2
(e.g. Hewlett Packard plotter, Laser Jet 5 HPGL etc.) and plot your drawing
to a file. Then insert this file in MS Word (Insert-> Picture-> AutoCAD Plot
file). If you don't have AutoCAD Plot filter in MS Word installed, make use of
MS Word distribution diskettes, select "Add components" and "Graphic Filters"
to add it. It works for MS Word 2 and 6 (I don't know about 7).
                                               Merry Christmas!
Return to Top
Subject: how to delete a layer
From: Stephen Chai
Date: 21 Dec 96 01:42:24 GMT
hello,
It is wierd that the LAYER command has everything that you 
would want except deleting a layer.  How do I go about 
achieving that?  I tried the DELLAYER lisp that came with 
the \sample directory, but it is cumbersome at best.
Stephen
schai@california.com
Return to Top
Subject: Re: acad 12 dxf problems
From: "Sergei M. Komarov"
Date: 21 Dec 1996 17:37:10 +0200
Burkhard Wangenheim on 20 december wrote:
>   hello world!
>
>   we have some troubles with acad 12 dxf files. some time ago, i imported dxf
>   files into corel4, which was no problem. now i tried to import these files into
>   corel 6 but failed; only a part is displayed. afterwards, i tried to re-import
>   these files into acad and also failed! why couldn't acad read its own dxf-
>   files???
>   a message like 'a polyline must have at least 2 vertices' or '7* unknown block'
>   appeared and no re-importing was possible. is there a possibility to solve
>   that? can i change the dxf's or the dwg's before converting them to dxf?
>
>   many thanks in advance for a short email!
>
Hi Burkhard,
AutoCAD does read own DXFs, but the same or earlier version. If you
have problems importing R12 DXF to AutoCAD R12 - most likely your DXF is
corrupted. Seek for reserve copy.
                                  Merry Christmas!
Return to Top
Subject: Re: AutoCad Viewer
From: Jon Genova
Date: Sat, 21 Dec 1996 10:08:36 -0700
Robert Pantangco wrote:
> 
> Karel Lenardic wrote:
> >
> > seema siddiqi wrote:
> > >
> > > Hi,
> > >
> > > Is there an Autocad file viewer with redlining (markup) facility?
> > > This engineering drawing software is needed for 100 PCs.
> > > Any suggestions are appreciated.
> > >
> > > Seema
> > Look at WWW.CYCO.COM for AUTOMANAGER VIEW
> > Karel
> 
> Hi Seema,
> 
> You can also try Slick! for Windows v4.0 at www.slickwin.com.
> 
> Robert...
Try this also
AIL	CSWL Inc.	Phone      	: (415)372-2900(Ext.107)
	1015 E, 	Fax          	: (415)577-8451
	Hillsdale Blvd.	Email        	: dwg@cswl.com
	Suite 208,	Compuserve    	: 102600,645
	Foster City, 	World Wide Web 	: http://www.cswl.com
	CA 94404.
Return to Top
Subject: Re: R13c4a crashes system on each exit
From: Jon Genova
Date: Sat, 21 Dec 1996 10:17:14 -0700
Tim Kirwan wrote:
> 
> David Whynot wrote:
> >
> > I have finally joined the ranks of r13. I installed the software and it
> > fires up without any problem. When I exit I recieve the following
> > message:
> >
> >      ACAD caused an invalid page fault in
> >      module KERNEL32.DLL at 014f:bff860bf.
> >      Registers:
> >      EAX=c0016f78 CS=014f EIP=bff860bf EFLGS=00010206
> >      EBX=0273fa6c SS=0157 ESP=02720000 EBP=02720094
> >      ECX=c0016f74 DS=0157 ESI=027200ac FS=2557
> >      EDX=bff76648 ES=0157 EDI=02720178 GS=0000
> >      Bytes at CS:EIP:
> >      53 c7 44 24 04 00 00 00 00 56 8b 19 57 8b 30 55
> >      Stack dump:
> >      01790000 bff858f8 00000001 ffffffff 02720178 027200ac 027201dc
> >
> > The system then locks up when I colse the error dialog box and I'm
> > forced to reboot. I'm using Win95 on an Intel Pentium 133 with 32mb RAM.
> > Autodesk dealer has not been of any help. Suggestions anyone?
> 
> I had the exact same problem, with a machine very similar to yours. Did
> you happen to load the Autodesk Intenet Utilities along with Autocad.
> That was what was crashing mine. if you did load the AIU software try to
> uninstall it and thne try acad again.
> 
> good luck and
> Nollaig Shona duit agus Athbhliain faoi
> (Merry Christmas and Happy New Year)
> Tim
To add my two bits;
There seems to be a link between the health of win95 and the dreaded
exiting AutoCAD causes page fault errors. I had the same problem with
two different machines here and reinstalling Windows 95 cured it.
You will not loose any information by reinstalling w95, but corrupted
.dll and other crud will be overwritten. Have you installed the service
pack from Microsoft? Try www.microsoft.com, support.
regards,
Jon Genova
genovaj@stripe.colorado.edu
Return to Top
Subject: Generic CAD 6.1 to AutoCAD???
From: "Ben T. Eisemann"
Date: 21 Dec 1996 16:23:39 GMT
I there a way to convert a Generic cad (.gcd) file to a AutoCAD (.dwg)
file???  The option to save a file to a AutoCAD file in Generic Cad does
not work very well (if it ever did)  Any thoughts can help.
Thanks,
Ben T. Eisemann
Return to Top
Subject: Re: Mechanical CAD Standards
From: Jon Genova
Date: Sat, 21 Dec 1996 10:22:04 -0700
Endgate1 wrote:
> 
> I am also looking for mechanical standards, simlar to the AIA ones.
> jwilfong@endgate.com
Try Global Engineering Documents; 1-800-854-7179 x102
	This manual is about 4 inches thick, costs $195 but is THE standard 
regards
Jon Genova
genovaj@stripe.colorado.edu
Return to Top
Subject: Re: how to delete a layer
From: johndoe@nowhere.com (YoMaMa)
Date: Sat, 21 Dec 1996 18:09:25 GMT
On 21 Dec 96 01:42:24 GMT, Stephen Chai 
wrote:
I THINK Autocad will delete unused layers when you use the pruge
command.  It will also get rid of unused linetypes, styles, block
definitoins, etc.  
>hello,
>
>It is wierd that the LAYER command has everything that you 
>would want except deleting a layer.  How do I go about 
>achieving that?  I tried the DELLAYER lisp that came with 
>the \sample directory, but it is cumbersome at best.
>
>Stephen
>schai@california.com
>
Return to Top
Subject: Re: Whip Plugin/internet tools
From: Dave Stroud
Date: Sat, 21 Dec 1996 09:51:34 -0800
evansm@direct.ca wrote:
> 
> I've just installed the whip plugin and internet tools for
> AutoCADR13c4 win95. When installing it said it could not find an
> internet browser. Thought it might be just a glitch so continued. When
> I load acad it says"no default browser found in registry". Any
> suggestions?
It would appear that there is no default .htm association in your
registry.
Try using File Manager to associate .htm with your netscape.exe.
- Run File Manager (winfile.exe)
- Select 'Associate' from the File menu 
- In the edit box 'Files with Extension', enter htm
- In the edit box 'Associate With', enter the path to your netscape.exe
Dave Stroud
Return to Top
Subject: ---===<<< Autocad with the look & feel of CATIA >>>===---
From: mcclomp@introweb.nl
Date: Sun, 22 Dec 1996 02:03:04 GMT
hello,
I'm looking for a program, which fits as a shell over
Autocad, on a way that it has the look and feel of CATIA.
Who knows more about this software ?
place reaction in this newsgroup, or even better mail me
on following address
ter_denge.schutten@pi.net
thanks in advantage !!
John
"Going on, means going far ....... Going far, means returning"
                        {Tao Te Ching}
Return to Top
Subject: Re: help exoprting 3ds
From: Bill Wollaston
Date: Sat, 21 Dec 1996 09:23:01 -0800
G Rajesh wrote:
> 
> I have not seen any errors like this. However , you have also not said
> the options you have used for exporting. Did you try using the option
> BY OBJECT. Try also by increasing the value of the THRESHOLD.
> 
	More findings, facetres variable really makes the difference. With a lower facetres value export 
is no problem. The model doesn't look very nice in r13 but i'm rendering in another app. All the geometry 
looks like what it's supposed to be. A tube is a tube. etc. What i don't know is , does the facetres value 
effect the geomtry of the model at all in r13??
	Another solution is to explode the object if you get "too many vertices" error statement. Another 
solution is to break the model up into as many pieces as possible. I was told by another post, that the 
.3ds format has a 64k buffer per part, so if you go over,,, you get "too many vertices".
	For anyone who's still following this, there you go.
	Mail me if you have more questions, i have some more ideas for those of us working n less than 
workstation performance machines..
	Thanks to all who posted including above.
	Bill Wollaston
	ps http://www.speakeasy.org/~wolly/files/new004.gif
Return to Top
Subject: mcad:sketch forms multiple profiles? what the hell it that?
From: screamman@aol.com (Screamman)
Date: 21 Dec 1996 17:48:43 GMT
I constantly get these messages when I make a pression profile. "THE
SKETCH FORMS MULTIPLE PROFILES". There is nothing in the help or the
manuals that comes close to describing this error. Am i the only one who
gets it or has anyone else run  into this problem?
please help. 
thanks
bob
Return to Top
Subject: Re: how to delete a layer
From: dyoung@mcwi.com (Darren Young)
Date: Sat, 21 Dec 1996 12:53:39 -0600
In article <32bb4080.0@seashell.california.com>, 
schai@global.california.com says...
> hello,
> 
> It is wierd that the LAYER command has everything that you 
> would want except deleting a layer.  How do I go about 
> achieving that?  I tried the DELLAYER lisp that came with 
> the \sample directory, but it is cumbersome at best.
> 
Stephen,
The purge command is what your looking for.
Sincerely,
-- 
Y-------------------------------------------------------------------+
| Darren J. Young                 | Minnesota CADWorks, Inc.        |
|                 dyoung@mcwi.com | P.O. Box 7293                   |
|       76341.3053@compuserve.com | St. Cloud, Minnesota 56302-7293 |
|             http://www.mcwi.com | Phone: 1-320-654-9053           |
| CAD/CAM/CNC - Drafting Design Customization Training Programming  |
0,0-----------------------------------------------------------------X
Email addresses not to be sold or used for unsolicited advertizments.
Return to Top

Downloaded by WWW Programs
Byron Palmer