Hi, how can I apply my own VBA-Macros to a toolbar in PhotoPaint 10? I haven't found a way to do it like in CorelDRAW 10. Is the only way to run a macro in...
schmali
schmali@...
May 4, 2002 10:23 am
851
Hello, I have a new module available, all cleaned up for public use. See it at http://johndankey.creativenow.com/scripts/arcorwedge.html. It's a module that...
Hi, here is my problem. How can i start my old Corel Draw 9- Script in Corel Draw 10. The Problem ist that i can not put my CSC - Script in the Menu. It is...
Sure you can do this. I use this all the time. Here is and Example: Sub TextSpacing() Dim csf As CorelScriptFile Set csf = OpenCorelScriptFile("C:\Program ...
Dim csc As CorelScriptFile Set csc = Application.OpenCorelScriptFile("C:\Program Files\Corel\Graphics09\Draw\Scripts\Scripts\calendar.csc") csc.Play HTH. -- ...
Hi, I am a newbie to VBA, so please bear with me. I would like to create a script to batch downsave CDR files - something along the following lines. Does...
Included below is a very simple example of how you can do this. You will have to tie the code to a form if you want it all pretty like. Also I would suggest...
Curve.Selection yields a noderange. .Item(1) of this noderange should yield the index number of the first item in the selection. The following subroutine...
... In CorelDRAW, a node can be either selected or not. However CorelDRAW doesn't store any information about which node was selected first. Curve.Selection...
Alex, I beg to differ, but Draw *does* store which node was selected first. That's how, for instance, the node alignment works, by aligning the first selected...
John-Dan, In your example, Corel "stores" which was selected *last* and aligns other nodes to it; my reference is to the program functions rather than how it...
Roy, I'm afraid you may be right. I was hoping that since some people in this ng know things that are not in the help files, that they might be able to...
Hello everyone: I want to make effect to bitmap, but there are a lot of effect which can be used in vector image. when I used this effect to bitmap, Nothing...
Frank, if you are in Draw and the image is "Not" a bitmap already ....go to Menu/Bitmap/convert to bitmap/.....once you do this the effects for bitmaps should...
Ron
ronhd@...
May 16, 2002 1:08 am
865
Hi: Ron thank you for your reply! I want to do it in VBA,I want to make a effect to bitmap throught VBA in CorelDraw 10. could you please give me any piece of...
Alex: I know there are a lot of effect function which can be used for vector image, but I want to make effect to bitmap used VBA in CorelDraw 10, such as...
Hi Frank, I don't know anything about VBA. Sorry, maybe someone else will respond to you on matter. take care....Ron ... From: "frank_chen76"...
Ron
ronhd@...
May 17, 2002 1:43 pm
869
I'm trying to figure a way to force a vba call each time a document is opened directly from the folder. If I was opening a document with the open dialog, I...
Make sure the VBA Editor gets loaded with CorelDRAW on each start. Go to Tools>Options>VBA and remove checkmark from "Delay Load VBA" checkbox. This should...
Hi, With theses lines, I can circle throught all the shapes in the current selected layer. For nbreShapes = ActiveDocument.ActiveLayer.Shapes.Count To 1 Step...
Hi, With theses lines, I can circle throught all the shapes in the current selected layer. For nbreShapes = ActiveDocument.ActiveLayer.Shapes.Count To 1 Step...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the cdrvba group. File : / Looking for...
cdrvba@yahoogroups.com
May 29, 2002 4:17 am
875
This is not realy what I want... I do not want to browse all the pages but all the defined layers. ... From: johndankey To: cdrvba@yahoogroups.com Sent:...
Jimmy, To just process all the shapes on the current page, use something like: Dim pg As Page Dim sh As Shape Dim lyr As Layer Set pg = ActivePage For Each lyr...
Hello, I am using Corel Draw 9. With a Corel Script I am reading the data of an object using GetObjectData('myfield'). This is okey for Corel Draw 9, but it...
Hello, I have a big problem. I would like to write a text to center of an arc: Set oText = ActiveLayer.CreateArtisticText(nCenterX, nCenterY, cText) Set oPie...
Weisz Tamas
giraffe@...
Jun 10, 2002 8:36 am
881
Tamas, After you fitted the text to path, try plain with TextOnPath effect and its Offset property. It is an offset from the beginning of the path: ...