Informationen zum Forum AutoCAD VBA:
Anzahl aktive Mitglieder: 784
Anzahl Beiträge: 12.026
Anzahl Themen: 2.139

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 53 - 65, 91 Gesamtergebnisse mit Suchbegriffen computer sec.
Autocad VBA : Konturerkennung
Proxy am 31.01.2005 um 13:28 Uhr (0)
IMHO ist das in VBA zwar bestimmt möglich jedoch ist es mit hunderten von Codezeilen verbunden und wer hat schon grossartig Bock drauf. Code: Private Function Boundary(ByVal XYpoint As Variant) As AcadLWPolyline Const X As Byte = 0, Y As Byte = 1, Z As Byte = 2 Dim PrevTotal As Long Dim XYstring As String ThisDrawing.SetVariable NOMUTT , 1 PrevTotal = ThisDrawing.ModelSpace.Count XYstring = CStr(XYpoint(X)) & , & CStr(XYpoint(Y)) ThisDrawing.SendCommand ._-boundary & vbCr & A & vbCr & _Island ...

In das Form Autocad VBA wechseln
Autocad VBA : Crystal Reports 6 download
Proxy am 01.02.2005 um 21:50 Uhr (0)
PC Magazin 11/00 PC Business 04/00 PC Business 03/00 Ansonsten ist es ehh veraltet und Grauzonenfrage . ------------------ 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 Autocad VBA wechseln
Autocad VBA : Crystal Reports 6 download
Proxy am 14.02.2005 um 09:43 Uhr (0)
Die 10 er Version. ------------------ 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 Autocad VBA wechseln
Autocad VBA : Verbindungslinie der Blöcke ermitteln
Proxy am 18.02.2005 um 22:58 Uhr (0)
Iimho musst du die einzelnen Subentities mit einer Schleife durchrattern oder den Block sprengen und dann mit den einzelnen Objekten ein intersectionpoint errechnen. Zitat: - snip Dim ExpBlk As Variant Dim PntArr() As Variant Dim CurEnt As AcadEntity Dim EntCnt As Integer Dim LowBnd As Integer Dim UppBnd As Integer ExpBlk = TheBlockReference.Explode LowBnd = LBound(ExpBlk) UppBnd = UBound(ExpBlk) Redim PntArr(LowBnd To UppBnd) For EntCnt = LowBnd To UppBnd Set CurEnt = ExpBlk(EntCnt) With CurEnt PntAr ...

In das Form Autocad VBA wechseln
Autocad VBA : automatische Ermittlung der Rahmenabmaße
Proxy am 25.02.2005 um 07:29 Uhr (0)
Ist der Rahmen ein Block, Polylinienzug ... einzelne Linien ? Sind die Rahmen immer einzeln im Layoutbereich oder irgendwo im Modellbereich ? Fragen über Fragen ... Als Beispiel BoundingBox eines ssgets. Code: Sub ad_ssBox() This routine gets and shows the bounding box of a selection set. Demand load: -vbarun;ad_Utility.dvb!ad_ssBox; Dim adExtMax As Variant, adExtMin As Variant Dim adtmpMax As Variant, adtmpMin As Variant Dim adSS As AcadSelectionSet Dim adEnt As AcadEntity Set adSS = This ...

In das Form Autocad VBA wechseln
Autocad VBA : vba lernen mit buch
Proxy am 25.02.2005 um 11:57 Uhr (0)
Wenn du ein Neuling im Programmieren bist dann ist imho das Buch mit ca. 161 Seiten Einleitung und Vertiefung zur VBA etwas heftig, Gesamtzahl der Seiten ca. 900 . Der Autor bring ca. 10 jahre Erfahrung mit VBA/AutoCAD mit. Ich würde es empfehlen wenn bereits praktische Erfahrung in VBA hast. ------------------ 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 ...

In das Form Autocad VBA wechseln
Autocad VBA : Per VB6 ein eTranmit erstellen...
Proxy am 10.03.2005 um 13:52 Uhr (0)
Zwar kein VBA aber auch eine VBA-Lösung. filedia und sonstige Störfaktoren ausschalten und mit thisdrawing.sendcommand "._-etransmit" "zip" ... die datei(n) erstellen. ------------------ " 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 Autocad VBA wechseln
Autocad VBA : Linie in Polylinie umwandeln
Proxy am 14.03.2005 um 13:34 Uhr (0)
Als kleiner Denkanstoss: Code: Public Sub StartEndPoint() Dim oAcadLine As AcadLine Dim oAcadPoly As AcadLWPolyline Dim oEntity As AcadEntity Dim Point As Variant On Error Resume Next ThisDrawing.Utility.GetEntity oEntity, Point, Objekt wählen: If oEntity Is Nothing Then Exit Sub Select Case oEntity.ObjectName Case AcDbLine Set oAcadLine = oEntity With oAcadLine MsgBox Start: & .StartPoint(0) & , & .StartPoint(1) & , & .StartPoint(2) & vbCrLf & End: & .EndPoint(0) & , & .EndPoint(1 ...

In das Form Autocad VBA wechseln
AutoCAD VBA : Seite einrichten mittels VBA
Proxy am 14.03.2005 um 15:46 Uhr (0)
SchnippSchnapp:Code:Sub Example_CanonicalMediaName() This example finds the name of the media for the active layout Dim MediaName As String MediaName = ThisDrawing.ActiveLayout.CanonicalMediaName If MediaName = "" Then MsgBox "There is no media set for the active layout." Else MsgBox "The media for the active layout is: " & MediaName End IfEnd Sub------------------ "Lisp?!?! Why the Hell did you pick the most arcane, obscure, and hopelessly-rooted-in-the-computer-science-department langu ...

In das Form AutoCAD VBA wechseln
AutoCAD VBA : vba Laufzeit für ein formular
dw am 29.06.2007 um 12:04 Uhr (0)
Wer kann mich hilfe?Eine vba code Laufzeit für ein formular zu erstellen welche zusammen mit der system zeit der computer fünctioneert.

In das Form AutoCAD VBA wechseln
AutoCAD VBA : Obj-ARX Wrapper
facebraker am 13.08.2010 um 11:14 Uhr (0)
Guten Morgen,sorry, ich habe meine Signatur noch nicht aktualisiert, nutze VS 2010 Ultimate und Windows 7 64Bit Professional mit AutoCAD 2009.Ich habe jetzt mal gegoogelt und die autocad.exe.config angepasst.Ich hatte zuerst das Framework 2 drin, da kam der Fehler siehe Anhang.Dann habe ich das Framework 4 eingestellt:Code: startup!--We always use the latest version of the framework installed on the computer. If youare having problems then explicitly specify .NET 2.0 by uncommenting the following line.-- ...

In das Form AutoCAD VBA wechseln
AutoCAD VBA : Beginsave startet nicht
wronzky am 25.06.2007 um 12:16 Uhr (0)
AHA!schieb mal das AcadDocument_BeginSave dahin, wo es hingehört:in thisdrawing des Projektes.Dann siehst Du auch schon, was es noch so für Automatische Makros gibt...Grüsse, Henning------------------VoxelManufaktur Computer-Dienstleistungen für Architekten und Ingenieure http://www.voxelman.de

In das Form AutoCAD VBA wechseln
Autocad VBA : AutoCAD und XML
fuchsi am 07.04.2005 um 15:22 Uhr (0)
nun ja , da eine xml-datei eigentlich auch nicts anderes als eine normale Text-datei ist, sollte dieses Vorhaben kein problem sein. habe hier mal ein kleines XML-FIle gepostet: ?xml version="1.0" encoding="utf-8" ? ComputerList Computer Name WY14513PC /Name Identification 8ZXN N6JF UJD9 NDWH /Identification /Computer /ComputerList das kann man ja relativ einfach per VB oder LISP in eine text-datei schreiben z.B.: (setq x (open "d: est.xml" "w")) (print " ?xml version=""1.02" encoding=" ...

In das Form Autocad VBA wechseln

Anzeige:

Anzeige: (Infos zum Werbeplatz)

Ergebnisseiten :  1   2   3   4   5   6   7 

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