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...
851
johndankey
May 5, 2002 5:43 pm
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...
852
kai_key_21
May 6, 2002 2:36 pm
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...
853
Shelby L Moore
mooreshelby
May 6, 2002 3:12 pm
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 ...
854
Nick Wilkinson
isocalc
May 6, 2002 3:25 pm
Dim csc As CorelScriptFile Set csc = Application.OpenCorelScriptFile("C:\Program Files\Corel92;Graphics0992;Draw92;Scripts92;Scripts92;calendar.csc") csc.Play HTH. -- ...
855
xdrewuk
May 7, 2002 7:38 pm
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...
856
Shelby L Moore
mooreshelby
May 7, 2002 10:31 pm
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...
857
johndankey
May 10, 2002 1:26 pm
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...
858
alexv1n
May 10, 2002 2:01 pm
... 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...
859
johndankey
May 10, 2002 6:21 pm
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...
860
Roy Brewer
roybrewer
May 11, 2002 3:35 am
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...
861
johndankey
May 11, 2002 2:51 pm
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...
862
frank_chen76
May 15, 2002 9:00 pm
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...
863
Ron
ronhd@...
May 16, 2002 1:08 am
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...
865
frank_chen76
May 16, 2002 5:15 pm
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...
866
dingledangle2001uk
dingledangle...
May 16, 2002 11:17 pm
How can I create a reference at runtime? I cannot call VBA stored with a CDR file from my DLL. I can only call VBA stored globally. Any ideas? Marc...
867
frank_chen76
May 17, 2002 4:12 am
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...
868
Ron
ronhd@...
May 17, 2002 1:43 pm
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"...
869
johndankey
May 20, 2002 2:53 pm
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...
870
Alex Vakulenko
alexv1n
May 20, 2002 3:00 pm
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...
871
Jimmy Lavoie
spirit89es
May 28, 2002 8:00 pm
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...
872
Jimmy Lavoie
spirit89es
May 28, 2002 8:30 pm
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...
873
johndankey
May 29, 2002 2:47 am
Jimmy, Try: For Each p In ActiveDocument.Pages For Each s In p.Shapes 'Code here... Next s Next p John-Dan Key Fine Art at...
874
cdrvba@yahoogroups.com
May 29, 2002 4:17 am
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...
875
Jimmy Lavoie
spirit89es
May 29, 2002 12:17 pm
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:...
876
Nick Wilkinson
isocalc
May 29, 2002 8:20 pm
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...
877
m19061979
May 31, 2002 3:29 pm
hi, i´ve a textbox and i want to do a vertical alignment to center the text of the box,ut i can´t find an easy way to do it... Thanks...
879
peter_heike_schuberth
peter_heike_...
Jun 10, 2002 8:29 am
Hello, I am using Corel Draw 9. With a Corel Script I am reading the data of an object using GetObjectData('myfield39;). This is okey for Corel Draw 9, but it...
880
Weisz Tamas
giraffe@...
Jun 10, 2002 8:36 am
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...
881
Alex Vakulenko
alexv1n
Jun 10, 2002 12:38 pm
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: ...