Search the web
Sign In
New User? Sign Up
cdrvba · Corel Application Automation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 850 - 881 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
850
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@...
Send Email
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...
johndankey
Offline Send Email
May 5, 2002
5:43 pm
852
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...
kai_key_21
Offline Send Email
May 6, 2002
2:36 pm
853
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 ...
Shelby L Moore
mooreshelby
Offline Send Email
May 6, 2002
3:12 pm
854
Dim csc As CorelScriptFile Set csc = Application.OpenCorelScriptFile("C:\Program Files\Corel\Graphics09\Draw\Scripts\Scripts\calendar.csc") csc.Play HTH. -- ...
Nick Wilkinson
isocalc
Offline Send Email
May 6, 2002
3:25 pm
855
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...
xdrewuk
Offline Send Email
May 7, 2002
7:38 pm
856
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...
Shelby L Moore
mooreshelby
Offline Send Email
May 7, 2002
10:31 pm
857
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...
johndankey
Offline Send Email
May 10, 2002
1:26 pm
858
... 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...
alexv1n
Offline Send Email
May 10, 2002
2:01 pm
859
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...
johndankey
Offline Send Email
May 10, 2002
6:21 pm
860
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 Brewer
roybrewer
Offline Send Email
May 11, 2002
3:35 am
861
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...
johndankey
Offline Send Email
May 11, 2002
2:51 pm
862
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_chen76
Offline Send Email
May 15, 2002
9:00 pm
863
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@...
Send Email
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...
frank_chen76
Offline Send Email
May 16, 2002
5:15 pm
866
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...
dingledangle2001uk
dingledangle...
Offline Send Email
May 16, 2002
11:17 pm
867
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...
frank_chen76
Offline Send Email
May 17, 2002
4:12 am
868
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@...
Send Email
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...
johndankey
Offline Send Email
May 20, 2002
2:53 pm
870
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...
Alex Vakulenko
alexv1n
Offline Send Email
May 20, 2002
3:00 pm
871
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...
Jimmy Lavoie
spirit89es
Offline Send Email
May 28, 2002
8:00 pm
872
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...
Jimmy Lavoie
spirit89es
Offline Send Email
May 28, 2002
8:30 pm
873
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...
johndankey
Offline Send Email
May 29, 2002
2:47 am
874
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
Send Email
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 Lavoie
spirit89es
Offline Send Email
May 29, 2002
12:17 pm
876
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...
Nick Wilkinson
isocalc
Offline Send Email
May 29, 2002
8:20 pm
877
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...
m19061979
Offline Send Email
May 31, 2002
3:29 pm
879
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...
peter_heike_schuberth
peter_heike_...
Offline Send Email
Jun 10, 2002
8:29 am
880
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@...
Send Email
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: ...
Alex Vakulenko
alexv1n
Offline Send Email
Jun 10, 2002
12:38 pm
Messages 850 - 881 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help