Search found 9028 matches

by andrew
Sat Jan 31, 2015 12:01 am
Forum: QCAD Programming, Script Programming and Contributing
Topic: Create Multi-Line RTextData with ECMA
Replies: 3
Views: 5877

Re: Create Multi-Line RTextData with ECMA

Try

Code: Select all

printFile + '\\P' + dateFile
Backslash is used to mark special sequences such as ASCII line breaks (\n), tabs (\t), etc. To get an actual backslash into a string, you have to use '\\' in JavaScript.
by andrew
Fri Jan 30, 2015 7:45 pm
Forum: QCAD 'How Do I' Questions
Topic: Set different layers for different objects in a script
Replies: 7
Views: 6047

Re: Set different layers for different objects in a script

Could it be that you creating the block reference (RBlockReference) on layer 'Text'?
Note that a block reference is an entity and as such on a layer. Each entity inside a block is also on an individual layer.
by andrew
Fri Jan 30, 2015 5:58 pm
Forum: QCAD Troubleshooting and Problems
Topic: Problem opening QCAD pro
Replies: 5
Views: 10008

Re: Problem opening QCAD pro

OK. I'll post you a link to a shared folder on our Google Drive you can use to upload.

Can it be that the trial version you previously had was a different version of QCAD? I'm trying to find out if there was a problem introduced in a more recent QCAD version.
by andrew
Fri Jan 30, 2015 5:46 pm
Forum: QCAD Suggestions and Feedback
Topic: Paste Rotation Options
Replies: 1
Views: 6702

Re: Paste Rotation Options

It's Friday... :)
by andrew
Fri Jan 30, 2015 5:27 pm
Forum: QCAD Troubleshooting and Problems
Topic: Problem opening QCAD pro
Replies: 5
Views: 10008

Re: Problem opening QCAD pro

Please submit (attach or e-mail) the drawing file for testing, so we can help efficiently. Thanks.
by andrew
Fri Jan 30, 2015 5:26 pm
Forum: QCAD Professional
Topic: Help qcad
Replies: 9
Views: 12446

Re: Help qcad

No need to worry. This approximation of Autocad only affects the display. Your drawing still contains the proper circles / arcs they are just displayed as polylines.
by andrew
Fri Jan 30, 2015 4:54 pm
Forum: QCAD Professional
Topic: Help qcad
Replies: 9
Views: 12446

Re: Help qcad

Autocad approximates arcs and circles as polylines. You can improve the rendering quality by running the Autocad command regen.
by andrew
Fri Jan 30, 2015 4:51 pm
Forum: QCAD Professional
Topic: Aide sur qcad
Replies: 1
Views: 5517

Re: Aide sur qcad

Autocad rapproche arcs et des cercles comme polylignes. Vous pouvez améliorer la qualité du rendu en exécutant la commande Autocad regen.

Autocad approximates arcs and circles as polylines. You can improve the rendering quality by running the Autocad command regen.
by andrew
Fri Jan 30, 2015 4:48 pm
Forum: QCAD 'How Do I' Questions
Topic: Set different layers for different objects in a script
Replies: 7
Views: 6047

Re: Set different layers for different objects in a script

Change line
operation.addObject(textL);
to:
operation.addObject(textL, false);
by andrew
Fri Jan 30, 2015 4:29 pm
Forum: QCAD Suggestions and Feedback
Topic: Paste Rotation Options
Replies: 1
Views: 6702

Re: Paste Rotation Options

Do you have a use case for this?
Rotating 360 degrees would be the same as rotating 0 degrees (i.e. not rotating at all).
by andrew
Fri Jan 30, 2015 4:23 pm
Forum: QCAD Professional
Topic: Linie unendlich lang
Replies: 1
Views: 2727

Re: Linie unendlich lang

QCAD unterstützt seit Version 3.6.0 unendlich lange Linien (Konstruktionslinien). Bei den meisten Linienwerkzeugen kann in der Optionenwerkzeugleiste gewählt werden ob eine Linie, eine unendliche Linie oder ein Strahl gezeichnet werden soll. Um nach einer Konstruktionslinie wieder eine normale Linie...
by andrew
Fri Jan 30, 2015 4:18 pm
Forum: QCAD Professional
Topic: Linie unendlich lang
Replies: 1
Views: 2727

Linie unendlich lang

Von einem QCAD Benutzer:
Ich kann bei einer Linie zwischen zwei Punkten nur den Anfangspunkt wählen. Die Linie wird nach setzen des Anfangspunktes unendlich lang, ich kann das Ende nicht setzen.
by andrew
Fri Jan 30, 2015 4:17 pm
Forum: QCAD 'How Do I' Questions
Topic: How do I change object length without changing width ?
Replies: 1
Views: 3494

Re: How do I change object length without changing width ?

Note that a rectangle object does not exist in QCAD / CAD in general. A visual rectangle in your drawing may consist of - four loose lines - a single polyline with four segments - a block reference containing the four lines or the polyline In the first two cases, you can extend the length of the rec...
by andrew
Fri Jan 30, 2015 3:04 pm
Forum: QCAD 'How Do I' Questions
Topic: Set different layers for different objects in a script
Replies: 7
Views: 6047

Re: Set different layers for different objects in a script

operation.addObject(obj); adds entities to the current layer with current (user defined) attributes by default.
Please use operation.addObject(obj, false); to use the layer ID, block ID and attributes stored in obj instead.
by andrew
Fri Jan 30, 2015 10:29 am
Forum: QCAD Programming, Script Programming and Contributing
Topic: build qcad with Qt built for debug
Replies: 1
Views: 4657

Re: build qcad with Qt built for debug

There's something special about qwebview... IMHO, Qt should take care of the 'd' though. Personally, I've never linked against Qt in debug mode under Windows as I only do Windows releases on Windows and prefer to develop on other platforms. So it's perfectly possible that something would have to be ...

Go to advanced search