Hello, I would like to change the background page color to an rgb color. I see there is a corelscript called setpapercolor, but I'm not sure how to tell it...
This is one the CorelDraw 10 VBA Recorder did right. Well it use CMYK so I changed it to RGB for you. But here you go: Sub ChangePageColor() With ActivePage ...
Thanks for the reply. Unfortunately I am still using Version 9. Sorry I forgot to mention that. Is there any way to do this in CorelDraw 9? Thanks, Mike ... ...
Hello, I'm new to the group and I'm looking for some help :) Position open for willing beginner/ talented experienced game graphics artist. Preferable skills...
Hi Steven, I was wondering if you were ever able to figure this out. We are trying to accomplish the same thing and are running into problems. Any help would...
Hello all, How do I write a script that opens all of the .CDR files in a specific folder? Thanks, Rick Randall _______________________ Rick Randall Technical...
Maybe i can help... Dear friend.. I have not yet the skill on writing scripts, but here is the tip if you can't find a script that do the work. On corel...
OK I worked up an example of VBA code for CorelDraw 10 or 11 that will do what you ask. This is a pretty rough example will no error handlers of any kind. It...
Hello, I'm trying to write a vb script that saves the activedocument in version 7 format. When I try to use the structsaveasoptions I get a run-time error...
Here some sample code of the SaveAs. Maybe it will help you pin point the problem. This code workins in CorelDraw 10 and 11. Sub SaveOlderVersion() Dim opt...
I just read a previous post that says there were problems with some of the structs in the origional version of Draw10. So I installed the service packs and am...
Hi all ! I'm absolutely new to cdr vba programming. I'd like to know if is there a ready made script to open a list of cdr files and insert their content in ...
Check out Alex's Thumbnailer script. at: http://www.vakcer.com/oberon/draw/drawscripts/thumbnailersh.htm It will import all files in a directory and you can...
How can I add a shape or group to the current selection? I'm trying to duplicate a shape then select both the new one and the old one. I can duplicate it ok...
Thanks alot! Worked like a charm...I appreciate it. Are there any good Corel VBA resources on the Web? It sure is a scarce subject. ... the ... the ... ...
I am trying to start using CorelDraw VBA to automate making slide rule scales. I know this is a stupid thing to be doing but bear with me. I have looked all...
Thank You very much for your example! I have this thing making logarithmic scales on a size A0 paper, but really want to create scales 25 cm long, which is a...
OK, I'm getting there slowly but surely, but I have a question about dimensional accuracy. A corect slide rule scale is 250 mm, or 25cm or (9.84")long. This is...
Joe, CorelDRAW does not "require" that you use points: there are something like 15 different unit sizes available to the SRDocument.Unit command, including...
Thank you very much for taking the time to look at my program. If you send me your address, I will send you one of my completed illustrations. I have, in the...
My VBA project to create slide rule scales is zooming along, thanks to Nick Wilkinson,and I can now create an accurate C Scale with properly placed tic marks....
Joe, From memory: SRShape.Outline.Type = cdrNoOutline You can, of course, also create each tick as a two-node straight line and use the Outline.Width property...
I'm going great guns on my slide rule project - thanks to members of the Slide Rule group (and you thought this group was abstruse!) I now have the basic...
Joe, The rounding errors are due to the fact that numbers are stored as a _hexadecimal_ value and then converted to decimal on the fly -- it's not possible...