Forum: CorelDRAW/Corel DESIGNER VBA
06-12-2020, 16:57
|
Replies: 2
Views: 480
Coreldraw 2020 vba and the objects docker
Starting with X7 there are changes to the xslt files for custom dockers. You can see my post about it here:
Changes to XSLT Files for X7 (http://https://forum.oberonplace.com/blog.php?b=39018)
...
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 16:11
|
Replies: 1
Views: 8,319
How to use user input text in a form?
If you are not getting anything back, my guess is that your form is closed.
I would recommend you put a button on your form that wen you click on it that it would show you the value in the...
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 16:05
|
Replies: 1
Views: 5,962
Possible to select same font?
You could do something like this. Select a line of Text and then run the following macro. It will select all others lines of text on the current page that have the same font.
Sub SelectSameFont()...
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 15:47
|
Replies: 1
Views: 6,006
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 15:44
|
Replies: 2
Views: 10,843
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 15:28
|
Replies: 2
Views: 3,178
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 14:49
|
Replies: 2
Views: 1,437
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-11-2020, 14:47
|
Replies: 1
Views: 1,066
Origin Point of Rectangle
The easiest way would be to find the first node of the display curve.
The following will mark the origin point of each rectangle with a red circle:
Sub FindStartofRectange()
Dim sr As...
|
Forum: CorelDRAW/Corel DESIGNER VBA
13-05-2020, 23:05
|
Replies: 4
Views: 11,811
Virtual Segment Delete
I will also say, have you tried the Virtual Segment Delete Tool?
If you hold down Shift, you will see the tool icon change, you then draw a box around the nodes and they get joined.
The...
|
Forum: Macros/Add-ons
02-10-2017, 11:55
|
Replies: 1
Views: 7,696
Intersects
You would need to add a loop to loop through all your shapes and check them for Intersects.
-Shelby
|
Forum: CorelDRAW/Corel DESIGNER VBA
06-03-2017, 22:54
|
Replies: 2
Views: 3,451
Custom Icon
Just to add to this, I normally create a custom toolbar to add my custom icon to, then you can export the workspace and the new toolbar. This will give you XML you need to add if you want to add the...
|
Forum: CorelDRAW/Corel DESIGNER VBA
02-03-2017, 01:02
|
Replies: 4
Views: 4,040
Lots of Shapes
If you are working with a lot of shapes grouping makes things go move faster. So you could do something like this:
Sub MakeLayerTransparent()
Dim s As Shape
Set s =...
|
Forum: CorelDRAW/Corel DESIGNER VBA
17-02-2017, 12:46
|
Replies: 12
Views: 4,907
Nodes Example
If you could post an example .cdr file it would be helpful. A before and after example workds best.
-Shelby
|
Forum: CorelDRAW/Corel DESIGNER VBA
16-01-2017, 16:39
|
Replies: 1
Views: 3,533
Code
The code works fine in X6 16.4.1.1281 so I am going to guess it is a bug in that version.
-Shelby
|
Forum: General
16-01-2017, 16:34
|
Replies: 1
Views: 7,187
X8 Improvements
The biggest X8 improvement for me is the support of High DPI screens. That said, I only have one machine with such a screen and I currently do not use it often. So I still spend most of my time in...
|
Forum: Macros/Add-ons
15-12-2016, 14:03
|
Replies: 6
Views: 9,957
Select Effects
Here you go, select your shape or shapes and run the SelectEffects
Sub SelectEffects()
Dim sr As ShapeRange, srNewSelection As New ShapeRange
Dim s As Shape
Dim eff As Effect
...
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-12-2016, 02:13
|
Replies: 2
Views: 4,781
Order ShapeRange
Create a Function that places the Shape in the position you wish in the ShapeRange and then have it return that ShapeRange. Here is an example of the function. If your position is greater then the...
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-12-2016, 01:27
|
Replies: 7
Views: 8,415
Examples
dungbtl,
I would need some examples, but then I could see if I can get the results you want.
-Shelby
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-12-2016, 01:25
|
Replies: 1
Views: 3,392
Excel
You can always open Excel and do your coding there, you will get help and all the fun stuff.
-Shelby
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-12-2016, 01:22
|
Replies: 11
Views: 18,301
64-bit Version
Here is a 64-bit version. It is 64-bit only, but you may compare to the other to see what I changed:
Public Const OFN_ALLOWMULTISELECT = &H200&
Public Const OFN_EXPLORER = &H80000
Public Const...
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-12-2016, 00:21
|
Replies: 1
Views: 3,259
Custom Form
Is the Custom Form on the X8 Machine?
You can also comment out that line and see if it is the issue.
Another way to make sure what line is cause the problem is to set a break point very early...
|
Forum: General
04-12-2016, 00:19
|
Replies: 1
Views: 7,013
Text Italic
Hopefully this helps:
Sub Change_Police_Altà()
Dim tr As TextRange
Set tr = ActiveShape.Text.Selection
tr.Font = "Lucida Bright"
tr.Size = 7
tr.Italic = True
|
Forum: CorelDRAW/Corel DESIGNER VBA
08-10-2016, 14:24
|
Replies: 1
Views: 3,277
X8 Error
What is the error message you are getting?
-Shelby
|
Forum: Site News
16-06-2016, 22:54
|
Replies: 1
Views: 28,405
New Server
Alex,
Thank you! I have noticed the speed bump!
-Shelby
|
Forum: CorelDRAW/Corel DESIGNER VBA
31-05-2016, 00:26
|
Replies: 6
Views: 7,347
X8
I have X4 - X8 installed on one system and X6 - X8 on another system and do not have any issues. What type of issues are you having?
X8 supports several more languages. You only see the ones you...
|