Search found 9039 matches

by andrew
Fri May 17, 2024 12:28 pm
Forum: QCAD/CAM
Topic: Werkzeugwege von Blöcken erstellen
Replies: 3
Views: 284

Re: Werkzeugwege von Blöcken erstellen

Nein, Werkzeugwege können nur von "losen" Objekten wie Linien, Bögen, Polylinien, Splines, etc. erstellt werden. Der generierte Werkzeugweg wird in einem Block abgelegt, das ist aber eher eine interne Angelegenheit.
by andrew
Fri May 17, 2024 9:29 am
Forum: Chat
Topic: How to automate the process of multiple files convertion via dwg2pdf
Replies: 6
Views: 471

Re: How to automate the process of multiple files convertion via dwg2pdf

The command is meant to be used in your own batch file (e.g. convert_all_dxf_to_pdf.bat).

To run it directly on the command line, use this instead:

Code: Select all

for %f in (*.dxf) do dwg2pdf.bat -o %~nf.pdf %f
by andrew
Thu May 16, 2024 6:37 am
Forum: Chat
Topic: How to automate the process of multiple files convertion via dwg2pdf
Replies: 6
Views: 471

Re: How to automate the process of multiple files convertion via dwg2pdf

I'm not sure what you mean by "command(CODE: SELECT ALL)".

The relevant command to iterate through all files in a directory and convert them to PDF would be:

Code: Select all

for %%f in (*.dxf) do dwg2pdf.bat -o %%~nf.pdf %%f
by andrew
Wed May 15, 2024 7:15 am
Forum: Chat
Topic: How to automate the process of multiple files convertion via dwg2pdf
Replies: 6
Views: 471

Re: How to automate the process of multiple files convertion via dwg2pdf

You can use a for loop of the Windows command line to process multiple files.

Please refer also to this thread for an example:
https://www.qcad.org/rsforum/viewtopic.php?f=32&t=7855
by andrew
Mon May 13, 2024 1:28 pm
Forum: QCAD 'How Do I' Questions
Topic: command line
Replies: 5
Views: 632

Re: command line

These are not files. A command line argument is a parameter that is passed to an application. In this case to tell it to run with the debugger attached to the script engine. Can you please let us know how exactly you are proceeding and provide screenshots of your dialogs, warnings, etc. so we can he...
by andrew
Mon May 13, 2024 12:55 pm
Forum: QCAD 'How Do I' Questions
Topic: command line
Replies: 5
Views: 632

Re: command line

This is a command line argument for the QCAD application. These arguments can only be passed to QCAD when starting QCAD. For example, you can start QCAD from a command prompt of your operating system like this: cd C:\Program Files\QCAD qcad.exe -enable-script-debugger You could also for example crea...
by andrew
Mon May 06, 2024 2:01 pm
Forum: QCAD Suggestions and Feedback
Topic: Copy / Paste Attributes
Replies: 2
Views: 409

Re: Copy / Paste Attributes

Please have a look at Modify > Property painter

https://www.qcad.org/doc/qcad/latest/re ... rtyPainter
by andrew
Mon Apr 29, 2024 2:02 pm
Forum: QCAD 'How Do I' Questions
Topic: print to .pdf - set save file destination
Replies: 14
Views: 845

Re: print to .pdf - set save file destination

Printing to PDF is a printer driver installed on your Linux system that (instead of printing to an actual printer) writes a PDF file to disk. I don't know if / how QCAD could influence its choice of directory since this really does not have anything to do with QCAD at all. You might want to do some...
by andrew
Mon Apr 29, 2024 9:45 am
Forum: QCAD 'How Do I' Questions
Topic: print to .pdf - set save file destination
Replies: 14
Views: 845

Re: print to .pdf - set save file destination

This is your system.

Maybe you can use File > PDF Export instead?
by andrew
Mon Apr 29, 2024 9:35 am
Forum: Pre-sales Questions
Topic: Which licence i need (dwg2svg)?
Replies: 1
Views: 1199

Re: Which licence i need (dwg2svg)?

A server license is only needed if the software is installed on the server.
by andrew
Thu Apr 25, 2024 8:09 am
Forum: Introduce Yourself
Topic: rotatae in ecma
Replies: 3
Views: 564

Re: rotatae in ecma

but how do I rotate it inside the ecma script shell? I'd recommend to create a line shape in memory only, then transform it as desired and only then add it: // create a new line shape in memory, this adds nothing to the drawing yet: var line = new RLine(0,0, 100,100); // rotate the line around poin...
by andrew
Wed Apr 24, 2024 7:58 am
Forum: QCAD 'How Do I' Questions
Topic: purchased, now...?
Replies: 3
Views: 427

Re: purchased, now...?

Infinidean: Please refer also to our website for detailed information about accessing the full version:

https://www.qcad.org/en/accessing-downloads-updates
by andrew
Mon Apr 22, 2024 10:18 am
Forum: QCAD Troubleshooting and Problems
Topic: dwg2dwg Polyface mesh gets converted to Polyline
Replies: 2
Views: 313

Re: dwg2dwg Polyface mesh gets converted to Polyline

QCAD does not support all entity types or features of the DXF/DWG formats. Polyface and other 3D contents are not supported and we are not planning to support these in the future. Perhaps, the ODA File Converter is more suitable for your requirements: https://www.opendesign.com/guestfiles/oda_file_c...
by andrew
Fri Apr 19, 2024 10:03 am
Forum: Announcements
Topic: Dutch Video Tutorials
Replies: 0
Views: 1462

Dutch Video Tutorials

The Dutch translation of our 12 QCAD video tutorials for beginners is now available for our Dutch users.

De Nederlandse vertaling van onze 12 QCAD video tutorials voor beginners is nu beschikbaar voor onze Nederlandse gebruikers.

https://qcad.org/video-tutorials-in-het-nederlands

Go to advanced search