Corel does support VB and OLE automation with our applications through the CSD(Corel Solution Developer) program. Developers sign up as Standard or Platinum...
Fernando Cuconato
Fernando.Cuconato@...
Jan 2, 2002 1:43 pm
620
Has anyone managed to find a way to export a png file from corel just with vba in access , I can load a psd direct into corel draw and export out jpeg bitmaps...
Hi, i want to insert a symbol into a "paragraph text"-Object, using vba in CorelDraw 10. I tried the "DropSymbol"-Command, but I didnīt find a way to place...
I've written a VBA script (Coreldraw v9) to automate some edits, which works with a single drawing. How can I run this script with all the files stored in a...
Hi Patrick, take a look at "Dir" function into VBA help: <quote> You must specify pathname the first time you call the Dir function, or an error occurs. If you...
Hi Jean-Marie, Your code works, thanks. Now I can get the file names one by one with a loop. But in my original code, I have statements like this: For Each lay...
What is the trick to get CorelDraw 10 to recognize the .gms files for customization. I previously did some customization with a gms now added stuff to it but...
Georgeann, Firstly, for a subroutine to be recognized by Customization, it must _not_ return a value, i.e. it must be a Sub (not a function), it must be...
... From: Nick Wilkinson [mailto:nick@...] Sent: Tuesday, January 08, 2002 5:22 AM To: cdrvba@yahoogroups.com Subject: Re: [cdrvba] VBA and...
Clements, John
jclements@...
Jan 8, 2002 4:01 pm
628
John, I do use that particular workaround, but I find Fireworks is a better friend for tight-pixel work, such as iconography; whereas Photo-Paint and PhotoShop...
Hi Patrick, ... try this (not tested!): sub YourVBAfunction(ByVal FileName As String) Dim doc As CorelDraw.Document Dim lay As CorelDraw.Layer Set doc =...
Hi All, What is the "cdrSelectionShape" ? I found this in VBA Object Browser. I tried to use it when I want to identify attribute of the shape, but it does not...
Akasaka-san, I haven't tried it, but I _think_ it's only use is to test whether a given shape is a selection shape, for example: Dim sh As Shape Dim shtype As...
Nick-san, Thank you for replying. ... You are quite right. I confirmed your code. Thank you. ... Mimaki Engineering Co,.Ltd Software Group Development dept. ...
Hi All, What is the missing term to copy an envelope effect from one object to several othher ? every time I try to use the recorder the result is : Sub...
... Hey, Nick, long time no ... Haven't really looked at this in Draw, but I'm used to a similar problem in PowerPoint, the wall I spend most of my time...
Steve Rindsberg
steve@...
Jan 9, 2002 7:19 pm
635
Steve, And yourself -- Happy New Year! The problem with CorelDRAW 10 is that the _mechanism_ for distributing parts of the UI is built-in and is just right ......
Hi, I think I have found a way to make my workspace work on another computer but its a bit of a hack. Here is what I did. 1. Export the workspace like you...
... No, unfortunately not. PPT is the sick unwanted stepchild of Office. But you can set things up so that add-ins (in effect, compiled PPTs with VBA in 'em)...
Steve Rindsberg
steve@...
Jan 10, 2002 6:57 pm
638
I am looking for the command line that will take a cdr and convert to PDF. I have already tried to use the command line .FileExport "N:\inbox\58000125.pdf",...
Joanne, ... I'm sorry to say but you are out of luck then :-( You need to get Draw 10 for this. One thing I could imagine is to use VBA's SendKeys command and...
Just installed Corel 10 on my PC and having a hard time with the code. Is this for the VBA or CorelScript? ... MSN Photos is the easiest way to share and print...
Hello Group, We currently have several thousand drawings done in Draw 8. Each of these has our company logo somewhere on the drawing. This logo was done in a...
Hello Joanne, I recently had to create a small script to batch translate CDR files saved in Draw 8 to PDF format. When I would try to run the script, it would...
Here is my code for finding font names. I am sure Alex will have a simpler approach. I tend to make things complex, but hey this works. The code basically...