Randall, It's very good that you provided that example. Here is a program for you: Sub CreateHotSpots() Const Numbers As String = "0123456789" Const RectX As...
833
Randall Richard
sylvylou
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
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
Apr 23, 2002 10:24 pm
Multiply it by -1 RichZ http://www.richz.com...
836
roma
furitora
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
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
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
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
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
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
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
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
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
Apr 26, 2002 7:51 pm
Hi--- Can you use RegularExpressions in CorelDraw 10 VBA?---richard...
846
dingledangle2001uk
dingledangle...
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
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
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...
Apr 30, 2002 9:08 am
Thanks Shelby, Thanks Zoltan, That's a great help. Marc...
850
schmali
schmali@...
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
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...