Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

cdrvba · Corel Application Automation

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 374
  • Category: Graphics
  • Founded: Feb 4, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 832 - 861 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
832 Alex Vakulenko
alexv1n Send Email
Apr 19, 2002
1:13 am
Randall, It's very good that you provided that example. Here is a program for you: Sub CreateHotSpots() Const Numbers As String = "0123456789&quot; Const RectX As...
833 Randall Richard
sylvylou Send Email
Apr 23, 2002
6:43 pm
Folks-- In VBA: If I have an integer that is a negative number (-87) And I want it to change it to the same number but positive (87), how do i do it?---Rick...
834 Andy & Lenore Etherin...
aetherin Send Email
Apr 23, 2002
6:47 pm
How about x = ABS(x)? ... From: Randall Richard [mailto:richard.randall@...] Sent: Tuesday, April 23, 2002 1:42 PM To: 'cdrvba@yahoogroups.com' Subject:...
835 RichZ
the_richz Send Email
Apr 23, 2002
10:24 pm
Multiply it by -1 RichZ http://www.richz.com...
836 roma
furitora Send Email
Apr 24, 2002
8:37 am
I got several temporary files created in root directory of C: drive. Names are: ~vmd291.tmp and similar. Think it's normal, but these files just get bigger...
837 johndankey Send Email Apr 24, 2002
5:40 pm
Can anyone suggest a method of separating a blend? I've created a blend with coding like this, With s355.CreateBlend(s392, 5, cdrDirectFountainFillBlend, ...
838 Shelby L Moore
mooreshelby Send Email
Apr 24, 2002
9:27 pm
Here is an example that might help. This code is VBA for CorelDraw 10. It creates two rectangles, then a blend between them then ungroups the blend. Sub...
839 Geoffrey J. Swenson
gee_whiz_bang Send Email
Apr 25, 2002
1:06 am
If U are running a Seti-at-home or protein folding distributed processing on your computer then this could be a working file for that. Geoff Swenson 1712 27th...
840 sgutauckis Send Email Apr 25, 2002
11:22 am
Multiplying by one only works if you know it will always be a negative number. Use the abs() function to return an absolute (positive) number....
841 Randall Richard
sylvylou Send Email
Apr 25, 2002
12:08 pm
Hi Folks, Where I work, we use templates for our tech. illustrations. There are currently two out there. Both of which have a big rectangle on the letter...
842 johndankey Send Email Apr 25, 2002
7:54 pm
Shelby, It did help, thank you. I'm not sure *how* it works (lol). I'm still trying to learn VBA, obviously, and I peruse every little scrap or example I can...
843 Shelby L Moore
mooreshelby Send Email
Apr 26, 2002
3:52 pm
If all your objects are inside the big rectangle you could just select all object then get the size of this bounding box like so: Sub ReportWidthHeigth() Dim s...
844 Randall Richard
sylvylou Send Email
Apr 26, 2002
5:40 pm
Folks------ I need to search a page for text that has the following characteristics: -The text string must not contain more than 4 characters -The text string...
845 Randall Richard
sylvylou Send Email
Apr 26, 2002
7:51 pm
Hi--- Can you use RegularExpressions in CorelDraw 10 VBA?---richard...
846 dingledangle2001uk
dingledangle... Send Email
Apr 27, 2002
11:39 am
Hi, I've set up some templates with multiple layers in Draw10. I'd like to use a script to "swtich on" particular layers (make them visible and exportable /...
847 Zoltan Szanto
szantoz Send Email
Apr 28, 2002
5:45 am
Dear Marc, With ActiveDocument.Pages(mypage) .Layers(mylayer).Printable = True .Layers(mylayer).Editable = True .Layers(mylayer).Visible = True End With You...
848 mooreshelby Send Email Apr 29, 2002
5:43 am
Sure you can do this very easily. Again this is for VBA under Draw 10. Here are a couple of examples: Sub LayerExamples() 'This Sets Layer 1 on Page 1 not to...
849 dingledangle2001uk
dingledangle... Send Email
Apr 30, 2002
9:08 am
Thanks Shelby, Thanks Zoltan, That's a great help. Marc...
850 schmali
schmali@... Send Email
May 4, 2002
10:23 am
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 Send Email 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 Send Email 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 Send Email
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 Send Email
May 6, 2002
3:25 pm
Dim csc As CorelScriptFile Set csc = Application.OpenCorelScriptFile("C:\Program Files\Corel&#92;Graphics09&#92;Draw&#92;Scripts&#92;Scripts&#92;calendar.csc") csc.Play HTH. -- ...
855 xdrewuk Send Email 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 Send Email
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 Send Email 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 Send Email 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 Send Email 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 Send Email
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 Send Email 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...
Messages 832 - 861 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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