Informationen zum Forum Rund um AutoCAD:
Anzahl aktive Mitglieder: 10.684
Anzahl Beiträge: 211.130
Anzahl Themen: 32.913
Schlagwort:
Im Beitrag/Titel Nur im Titel Nur nach Datum sortieren Docs / Anhänge mit Lösung
Suchmaschinenstatistik
Livesuche
Einstellungen
Info

Auch mit chatGPT* können Lösungen aus dem CAD.de-Forum recherchiert werden:

* chatGPT ist eine eingetragene Marke von openAI

Ergebnisse 287 - 299, 1503 Gesamtergebnisse mit Suchbegriffen computer sec.
Rund um Autocad : Fremdzeichnung mit exotischen Elementen
Proxy am 29.05.2004 um 21:03 Uhr (0)
(-1 . Objektname: 400cb010 ) (0 . SOLID ) (330 . Objektname: 400c9cf8 ) (5 . FA ) (100 . AcDbEntity ) (67 . 0) (410 . Model ) (8 . WAND ) (62 . 7) (6 . AUSGEZOGEN ) (100 . AcDbTrace ) (10 -1.99224 -3.93963 0.0) (11 -2.10874 -3.93963 0.0) (12 -1.99224 -7.44123 0.0) (13 -2.10874 -7.44123 0.0) (39 . 2.7) (210 0.0 0.0 1.0) Gruppencode 39 ist Objekthöhe, mit ssmod kannst du die ändern oder gleich in deiner Zeichnung das Element Solid mit entmake richtig erzeugen. ------------------ Li ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Fremdzeichnung mit exotischen Elementen
Proxy am 29.05.2004 um 22:24 Uhr (0)
P.S. mir ist gerade aufgefallen dass das Element einfach copy+paste in eine bereits geöffnete DWG und abgespeichert das Proxy-Problem bereits vollständig beseitigt. ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | 7500 KB PDF

In das Form Rund um Autocad wechseln
Rund um Autocad : objekte einfrieren
Proxy am 31.05.2004 um 20:30 Uhr (0)
Alternative: Code: ;;;---------------------------------------------------------------------------; ;;; ;;; BLANK.LSP Version 1.0 ;;; ;;; Copyright (C) 1995 by Autodesk, Inc. ;;; ;;; Permission to use, copy, modify, and distribute this software and its ;;; documentation for any purpose and without fee is hereby granted. ;;; ;;; THIS SOFTWARE IS PROVIDED AS IS WITHOUT EXPRESS OR IMPLIED WARRANTY. ;;; ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR PURPOSE AND OF ;;; MERCHANTABILITY ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Plotsteuerung, Hintergrund, Vordergrund
Proxy am 01.06.2004 um 13:10 Uhr (0)
Code: (defun C:hatch_back (/) (command _.draworder (ssget x ((0 . HATCH ))) _b ) ) (princ) ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | 7500 KB PDF

In das Form Rund um Autocad wechseln
Rund um Autocad : Spirale - Förderschneckenwendel 3D
Proxy am 01.06.2004 um 14:14 Uhr (0)
Code: ;;; --------------------------------------------------------------------------; ;;; SPIRAL.LSP ;;; Copyright (C) 1990 by Autodesk, Inc. ;;; ;;; Permission to use, copy, modify, and distribute this software and its ;;; documentation for any purpose and without fee is hereby granted. ;;; ;;; THIS SOFTWARE IS PROVIDED AS IS WITHOUT EXPRESS OR IMPLIED WARRANTY. ;;; ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR PURPOSE AND OF ;;; MERCHANTABILITY ARE HEREBY DISCLAIMED. ;;; ;;; ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Komische Fehlermeldung ?
Proxy am 02.06.2004 um 09:37 Uhr (0)
Befehl: _qsave *Warnung* Eigenes Objekt, Referenz ADCFC multiplizieren *Warnung* Eigenes Objekt, Referenz ADD05 multiplizieren Kann mir einer sagen was das für eine Bedeutung hat ? Datei wird zwar gespeichert jedoch ist diese Meldung immer da, auch wen ich die Datei umspeicher, AutoCAD neustarte etc. ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programmin ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Komische Fehlermeldung ?
Proxy am 02.06.2004 um 09:56 Uhr (0)
Immer das gleiche, egal ob ich _audit, _purge, blockbildung, etc ... DXF will ich nicht machen weil ich Objekttypenkonvertierung dann hätte. BTW. wie komm ich den zwei Handles (Objekten) auf die Spur, wie kann ich die selektieren, finden ? ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Plot mit Dialog über Script aufrufen
Proxy am 02.06.2004 um 10:36 Uhr (0)
Ergebniss der Suchfunktion: (defun c:freigabe (/ p1 p2 File) (setq p1 (getpoint Untere linke Ecke des Fensters angeben: )) (setq p2 (getpoint Obere rechte Ecke des Fensters angeben: )) (setq File (strcat c:/cad/ (Dateiname PLT ))) (DateiPlot2000 p1 p2 File) (princ (strcat Datei (strcase file) erfolgreich gespeichert. )) (princ) ) (defun DateiPlot2000 (p1 p2 File) (setvar filedia 0) (command _.-plot ) (command _y ) ; detailliert? (command Model ) ; Layoutnamen eingeb ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Plot mit Dialog über Script aufrufen
Proxy am 02.06.2004 um 10:59 Uhr (0)
Ich fragte mich warum da ein Script benutzt werden soll, Lisp ist da etwas besser und hab da gleich mal ein Beispiel gepostet. ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | 7500 KB PDF

In das Form Rund um Autocad wechseln
Rund um Autocad : Komische Fehlermeldung ?
Proxy am 02.06.2004 um 11:46 Uhr (0)
Langsam mag ich die DWG nicht mehr habe schon mit Code: (defun c:batchdxfcode (/ ss name ent number index) (setq ss (ssget)) (setq index 0) (setq number (sslength ss)) (repeat number (setq name (ssname ss index)) (setq ent (entget name)) (print index) (print ent) (print) (princ) (setq index (1+ index)) ) (textpage) (princ) ) die Zeichnug durchsucht aber nix mit ADCFC Objektname: 408d8aa0 und ADD05 Objektname: 408d8ae8 , wo kann sich sonst ...

In das Form Rund um Autocad wechseln
Rund um Autocad : Techn. Zeichnen Norm
Proxy am 02.06.2004 um 13:54 Uhr (0)
IMHO , hat das mehr mit Erziehung als mit der DIN zu tun. Solltest vielleicht dem Esel das Tabellenbuch auswendig lernen lassen. ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | 7500 KB PDF

In das Form Rund um Autocad wechseln
Rund um Autocad : linien verschmelzen
Proxy am 03.06.2004 um 09:58 Uhr (0)
hmmm, vielleicht hilft dir dieses Lisp: Code: (defun c:POLYJOIN (/ en ed ln s1 s2) (terpri) (lisp_set) (setq undoit t) (princ Objekte zum Verbinden auswählen: ) (setq s1 (ssget ((-4 . OR ) (0 . LINE ) (0 . LWPOLYLINE ) (0 . POLYLINE ) (0 . ARC ) (-4 . OR ) ) ) ) (while s1 (setq en (ssname s1 0) ed (entget en) ln (CDR (assoc 0 ed)) ) ;end setq (if (or (= ln POLYLINE ) (= ln LWPOLYLINE )) (command ._pedit en ...

In das Form Rund um Autocad wechseln
Rund um Autocad : bemassung
Proxy am 04.06.2004 um 11:33 Uhr (0)
U s für dabie , könnte einer der Gurus das Lisp so anpassen, das es mit Polyliniensegmenten funktioniert ? ------------------ Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department language in the world for an AutoCAD programming language? Read the whole story: The Autodesk File ca. 890 Seiten | 7500 KB PDF

In das Form Rund um Autocad wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1 ...  10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28   29   30   31   32   33   34   35   ... mehr

Alle Produkt-, Schrift-, Firmennamen und Logos sind Warenzeichen oder eingetr. Warenzeichen der jeweiligen Firmen.
©2025 CAD.de , Lenggries. Tel: ++49 (8042) 973 8208 | Datenschutz