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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 119 - 148 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
119
Hi.. I would like to know how, if its possible, to launch CorelDraw7 from Start/Run and for it begin a new document and run a script..automatically. I see that...
Ian Vincent
vincent@...
Send Email
Apr 3, 2001
12:05 am
120
Hi guys, Did you miss me? :-) I was pretty busy with a lot of stuff lately so I was not able to participate on the list. I hope to correct this... I will try...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
5:25 pm
121
Hi, ... Definitely. What you can try to do is to analyze all colors used in your drawing by going though all objects and inspecting their fills and outlines, ...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
5:32 pm
122
Dear Petr, ... Does CreateText actually takes a WideString or just String? Also, Are you sure that in MakeWideString function Result:=Result+Vst[__I]; actually...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
5:44 pm
123
Hi Richard, ... There's no luck with Draw 9. You need to have Draw 10 and use VBA object model to access print options (use Document.PrintSettings object for...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
5:56 pm
124
Rick, ... There is no other manuals on VBA in CorelDRAW, however the situation with this will change soon. As far as I know some authors already included VBA ...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
6:19 pm
125
Hi Shelby, ... I ... the ... ControlNumber ... and ... Your problem is that when you show the form again you show it modally. Which means that you show...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
6:27 pm
126
Hi Craig, << Whenever I have multiple documents open and importing logos in a specific range, sometimes the logo starts importing in the middle of the image...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
6:30 pm
127
Hi, ... Yes, you still can use the effect from script but all bitmap effect commands were replaced by a single BitmapEffect command. Here is how the Page Curl ...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
6:37 pm
128
Hi Ian, ... I believe OnStart.csc is what you need. CorelDRAW has several autoscripts. OnStart should be launched just after you start CorelDRAW. OnNew is...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
6:54 pm
129
Alex said ... Initially it didnt..but it does now..I only discovered corelscripting by accident a day or two ago..and unfortunately only have CorelDraw Select...
Ian Vincent
vincent@...
Send Email
Apr 3, 2001
7:47 pm
130
Ian, ... a ... FilterID (note that some of values are for import-only, so they cannot be used with export - for example, you cannot export to PDF. Also note...
Alex Vakulenko
alexv@...
Send Email
Apr 3, 2001
7:57 pm
131
Alex Thank for answering, but do you mind to offer some piece of code for me that can help me on finding the non-used color from the array or from the palette...
tuxedo21@...
Send Email
Apr 4, 2001
7:23 am
132
Alex Thank for answering, but do you mind to offer some piece of code for me that can help me on finding the non-used color from the array or from the palette...
tuxedo21@...
Send Email
Apr 4, 2001
8:41 pm
133
... Ive been looking into this topic..but its somewhat confusing. On one hand Clarion is well capable of running OLE Automation..but i am wondering if this is...
Ian Vincent
vincent@...
Send Email
Apr 4, 2001
10:59 pm
134
Alex. I look at Your text and start thinking about My Delphi code and his results. If I look at memory dump of some wide string with Czech characters, I see ...
Petr Barták
petrbartak@...
Send Email
Apr 5, 2001
9:33 am
135
Alex how does this work say in Draw 10? There are no OnOpen.csc or OnNew.csc Files. What is the VBA equivalent of this. I would like to make a script that...
Shelby L Moore
shelbym@...
Send Email
Apr 5, 2001
12:36 pm
136
Hi Alex, Thank you, your help is GREATLY APPRECIATED! I will keep looking for VBA sections in CorelDRAW books. I would like to help others on this forum too...
rfox@...
Send Email
Apr 5, 2001
10:29 pm
137
Does anyone know how the get the folder path for the current corel file that is open. I have tried to use GetCurrFolder, but all I get is the folder of the...
Jesse Dugan
jdugan@...
Send Email
Apr 11, 2001
10:53 pm
138
Hi Jesse, Sorry, I don't know much about Scripting yet but if you want to use VBA you can cut and paste this code: Sub Cname() Dim Cname As String Dim Cfname...
rfox@...
Send Email
Apr 11, 2001
11:35 pm
139
ActiveDocument.FilePath should return the string you need. (Contrast this with ActiveDocument.FileName and ActiveDocument.FullFileName) Robin. ... From: Jesse...
Robin.Trew@...
Send Email
Apr 11, 2001
11:43 pm
140
Thank you for your help. But is it possible to do in "Corel Script" or should I give up and just use VBA? ... From: Robin.Trew@......
Jesse Dugan
jdugan@...
Send Email
Apr 12, 2001
2:04 pm
141
Thank you for your help, I will give it a try. If I use VBA can I still reference and manipulate Corel objects? ... From: rfox@......
Jesse Dugan
jdugan@...
Send Email
Apr 12, 2001
3:08 pm
142
Jesse, ... No, you have to use VBA (and Draw 10) for this. There's no way of getting full file path for a document through CorelSCRIPT or in Draw 9 VBA. ...
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
4:30 pm
143
... Yes, you can still access CorelSCRIPT objects from VBA like this: Your old CorelScript program: WITHOBJECT "CorelDRAW.Automation.10" .CorelScriptCommand1...
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
4:32 pm
144
Hi, ... The task of finding that "transparent" color isn't that easy. The problem is that you have virtually no control over what palette will be used - it is...
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
7:13 pm
145
Ian, ... 'object ... You must be confusing OLE objects and Automation. CorelDRAW.Graphic.7 is the name of CorelDRAW document that can be embedded into a...
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
7:23 pm
146
Petr, ... It appears that CorelScript support for text is incorrect for extended characters. And yes, Artistic text seems to work fine with CreateArtisticText....
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
7:34 pm
147
Rick, ... I just read a book that has a chapter devoted to VBA in CorelDRAW 10. It's "CorelDRAW 10: The Official Guide" by Steve Bain (ISBN 0-07-213014-8)....
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
7:43 pm
148
... make ... Shelby, It works the same in Draw 10 as it used to be in earlier versions. There's no OnOpen.csc or OnNew.csc in Draw folder when you install...
Alex Vakulenko
alexv@...
Send Email
Apr 12, 2001
7:56 pm
Messages 119 - 148 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