Forum: CorelDRAW/Corel DESIGNER VBA
23-02-2021, 22:15
|
Replies: 1
Views: 2,052
W10 X6 Procedual Call error
Suddenly I'm seeing the following error a lot:
It seems it can occur with any macro that I've been using for years. It crashes Draw completely. I don't know how many hours of work I've lost...
|
Forum: CorelDRAW/Corel DESIGNER VBA
10-12-2020, 08:08
|
Replies: 2
Views: 3,827
Thanks, Shelby. I'll take a look if I ever...
Thanks, Shelby. I'll take a look if I ever upgrade, which is doubtful. X6 has it's issues on X10 but the asking price for 2020 is ridiculous and I can confirm that there is no move to top/bottom for...
|
Forum: CorelDRAW/Corel DESIGNER VBA
01-12-2020, 14:54
|
Replies: 2
Views: 3,827
Coreldraw 2020 vba and the objects docker
I tested Coreldraw 2020. One immediate problem I found was that the docker I wrote to access commands to fix issues with syncing the position and status of layers across multiple page documents...
|
Forum: CorelDRAW/Corel DESIGNER VBA
14-03-2020, 18:48
|
Replies: 1
Views: 12,365
W10 X6 shortcut problem
I have the following code run when I press shift and the fkey:
Sub DupDown() 'Shift+F
Set sr = ActiveSelectionRange
If sr.Count = 0 Then
MsgBox "Nothing selected"
Exit...
|
Forum: CorelDRAW/Corel DESIGNER VBA
22-04-2019, 19:44
|
Replies: 1
Views: 16,570
|
Forum: CorelDRAW/Corel DESIGNER VBA
04-01-2019, 17:29
|
Replies: 1
Views: 6,003
|
Forum: CorelDRAW/Corel DESIGNER VBA
11-05-2018, 18:37
|
Replies: 5
Views: 6,918
|
Forum: CorelDRAW/Corel DESIGNER VBA
29-04-2018, 18:51
|
Replies: 1
Views: 4,865
|
Forum: CorelDRAW/Corel DESIGNER VBA
29-04-2018, 14:23
|
Replies: 1
Views: 4,865
Save Part of A Document?
Suppose the current document has 10 pages. Is there anyway save the last 5 pages to a separate file? Thanks.
|
Forum: CorelDRAW/Corel DESIGNER VBA
25-03-2018, 08:28
|
Replies: 24
Views: 59,593
|
Forum: CorelDRAW/Corel DESIGNER VBA
20-03-2018, 15:59
|
Replies: 24
Views: 59,593
Not sure if this is relevant or will work with...
Not sure if this is relevant or will work with Coreldraw 2017 but this is the basic code I use for replacing objects with copies of another. The first object selected is the one that will replace all...
|
Forum: CorelDRAW/Corel DESIGNER VBA
19-03-2018, 09:40
|
Replies: 5
Views: 6,643
|
Forum: CorelDRAW/Corel DESIGNER VBA
13-03-2018, 17:48
|
Replies: 1
Views: 4,619
Solved - already covered
Found an old pos (https://forum.oberonplace.com/showthread.php?t=6459&highlight=characters)t with solutions by Michael Cervantes and Shelby. Thanks to both.
|
Forum: CorelDRAW/Corel DESIGNER VBA
13-03-2018, 17:32
|
Replies: 4
Views: 6,472
Glad you got it working., Can't find anything...
Glad you got it working., Can't find anything about an AlignAndDistribute command in X6 help, guess it is new. It's always annoying and time-consuming when old, trusted methods are broken by...
|
Forum: CorelDRAW/Corel DESIGNER VBA
13-03-2018, 02:29
|
Replies: 5
Views: 6,643
Try this (seemed to work using X6):
Sub...
Try this (seemed to work using X6):
Sub AlignGroupToObject()
Dim sr As ShapeRange
Dim s as shape
If ActiveDocument Is Nothing Or ActiveSelection.Shapes.Count = 0 Then Exit Sub
Set sr =...
|
Forum: CorelDRAW/Corel DESIGNER VBA
13-03-2018, 01:14
|
Replies: 1
Views: 4,619
Make vertical text X6 (no service packs)
How to change the artistic shape "cat" into:
c
a
t
?
The change texext to vertical button merely rotates the text 90 degrees. I want to make vertical text without rotating the characters....
|
Forum: CorelDRAW/Corel DESIGNER VBA
10-03-2018, 03:20
|
Replies: 4
Views: 6,472
|
Forum: CorelDRAW/Corel DESIGNER VBA
07-03-2018, 18:37
|
Replies: 3
Views: 7,128
|
Forum: CorelDRAW/Corel DESIGNER VBA
07-03-2018, 18:05
|
Replies: 3
Views: 7,128
|
Forum: CorelDRAW/Corel DESIGNER VBA
05-03-2018, 00:21
|
Replies: 3
Views: 7,128
ObjectData from Page Names?
I want to rename objects from page names if the page name contains a space. Can anyone tell me why this isn't working:
Sub SetObjectNamesFromPageNames()
Dim p As Page
Dim s As Shape
...
|
Forum: General
04-03-2018, 06:13
|
Replies: 0
Views: 10,992
X6 Object Data
How to set the default for Object Data fields so that there is only name? I want to remove all the other fields. I've been messing around with the field editor but can't get fields to stay deleted....
|
Forum: Corel Photo-Paint VBA
10-12-2017, 14:41
|
Replies: 0
Views: 19,780
Chnage Earser Size
Is it possible to change the size of the eraser by using vba? I'm using X6. I looked at the help file and saw something in there about corelscript but couldn't figure out how to get it to work....
|
Forum: General
15-01-2017, 06:46
|
Replies: 1
Views: 13,169
X8 Verdict?
Is anyone using X8. Is it a massive improvement over X6? Has the activation process been changed at all. I'm still using X6 without service packs because I didn't like the new TOS that came with the...
|
Forum: CorelDRAW/Corel DESIGNER VBA
15-01-2017, 06:21
|
Replies: 1
Views: 6,037
X6 Changecase problem?
If I run the following code with CorelDraw X6 (no service packs) then the changecase fails - it deletes the word. Is this a known bug? Or a problem with the code? Thanks.
Sub TestChangeCase()
...
|
Forum: CorelDRAW/Corel DESIGNER VBA
27-05-2016, 17:31
|
Replies: 1
Views: 5,065
|