shelbym
Senior Member |
Last Activity: 16-03-2023 10:31
Blog
View shelbym's BlogRecent Entries
Latest Blog Entry
Posted in Uncategorized
Introduction
CorelDRAW 2023 has a new Variable Outline Tool. You can also apply a variable outline via code. :-) I have put together a number of VBA examples of how this works. Hopefully you will find these useful.
...
CorelDRAW 2023 has a new Variable Outline Tool. You can also apply a variable outline via code. :-) I have put together a number of VBA examples of how this works. Hopefully you will find these useful.
Code:
Sub TestAddVariableWidthNodes() Dim sLine As Shape Set sLine = ActiveLayer.CreateLineSegment(2, 8, 2, 5) sLine.Outline.VariableWidthNodes.Add 0.25, 0.125 sLine.Outline.VariableWidthNodes.Add 0.5, 0.25
Posted in Uncategorized
Introduction
Corel has released a new version of CorelDRAW. The internal version number remains at 24. If you install the subscription version it will install to the CorelDRAW Graphics Suite 2022 folder, if you install the “One-Time Purchase” 2023 Version it will install to the CorelDRAW Graphics Suite 2023 folder.
There are other changes for the “One-Time Purchase” 2023 Version you should be aware for. This version is also referred to the PE (Perpetual Edition)....
Corel has released a new version of CorelDRAW. The internal version number remains at 24. If you install the subscription version it will install to the CorelDRAW Graphics Suite 2022 folder, if you install the “One-Time Purchase” 2023 Version it will install to the CorelDRAW Graphics Suite 2023 folder.
There are other changes for the “One-Time Purchase” 2023 Version you should be aware for. This version is also referred to the PE (Perpetual Edition)....
Posted in Uncategorized
Introduction
Corel has released a new version of CorelDRAW. With the move to the subscription model they have dropped the year version from the name of the appliction but it still installs to a year folder, so for now I will continue to call is 2022. Let's see what is new in the Object Model for 2022. The list is not that long so I will post the entire list here, no need to download a file this year.
Legend:...
Corel has released a new version of CorelDRAW. With the move to the subscription model they have dropped the year version from the name of the appliction but it still installs to a year folder, so for now I will continue to call is 2022. Let's see what is new in the Object Model for 2022. The list is not that long so I will post the entire list here, no need to download a file this year.
Differences between VGCore (23.1) and VGCore (24.1)
Legend:...
Posted in VBA
Introduction
In this post we will be looking at how to modify a Macro / Script in CorelDRAW. Beginning in CorelDRAW 2019 Macros were renamed to Scripts. I have been using CorelDRAW a long time, so I still refer to them as Macros. Just know that depending on your version of CorelDRAW it may use the term Macro or in the newer versions it will use the term Script. The goal of this post is to give you a nudge to try and make an improvement to your favorite macro yourself.
...
In this post we will be looking at how to modify a Macro / Script in CorelDRAW. Beginning in CorelDRAW 2019 Macros were renamed to Scripts. I have been using CorelDRAW a long time, so I still refer to them as Macros. Just know that depending on your version of CorelDRAW it may use the term Macro or in the newer versions it will use the term Script. The goal of this post is to give you a nudge to try and make an improvement to your favorite macro yourself.
...
Posted in Uncategorized
Introduction
Corel has released a new version of CorelDRAW. Let's see what is new in the Object Model for 2021. The list is not that long so I will post the entire list here, no need to download a file this year.
Legend:
Class ActiveView
Properties:
Corel has released a new version of CorelDRAW. Let's see what is new in the Object Model for 2021. The list is not that long so I will post the entire list here, no need to download a file this year.
Differences between VGCore (22.1) and VGCore (23.0)
Legend:
- Not changed
- Added
- Removed
Class ActiveView
Properties:
- Property UseMultipageView As Boolean
- Function FindPageAtPoint(ByVal x As Double, ByVal
Recent Comments
Thanks Shelby!
Quote:
Originally Posted by Keefster
great post!
|