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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1056 - 1085 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1056
Hi, the header says it - I seem to be unable to specify the quality and smoothing in PhotoPaint when I want to save or export an image as JPG using VB(A). I...
Thilo Trautwein
thilot71
Offline Send Email
Nov 1, 2002
11:47 pm
1057
Shanerestin: Use Initialize instead, form properties does not have a load proc., do not use the Form's name, like the sub you stated. Here is the proper code: ...
Allan Echavia
jedlan_m
Offline Send Email
Nov 4, 2002
6:36 am
1058
Does anyone know if there is a way to make one of the node stay still when using the JoinWith? It seems the only way it works now is they meet half way, I...
Shelby L Moore
mooreshelby
Online Now Send Email
Nov 7, 2002
3:52 am
1059
... Shelby, Why not do something like this: Dim n1 As Node, n2 As Node Dim x As Double, y As Double '... Set nodes n1 and n2 here ' Join n2 to n1 (n1 is not...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 7, 2002
4:15 am
1060
Alex, your simple solutions are always wonderful. This works great! My little script is working better then ever now. Shelby...
Shelby L Moore
mooreshelby
Online Now Send Email
Nov 11, 2002
1:38 pm
1061
Hello, In Corel 10, how do you write a macro that will Publish to PDF with specific settings? I see the "Sub PublishToPDF(FileName As String)" but I can't...
Randall Richard
sylvylou
Offline Send Email
Nov 13, 2002
3:53 pm
1062
Rick, Use Document.PDFSettings object to specify all the settings before calling PublishToPDF. ... Alex...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 13, 2002
4:52 pm
1063
Hi, I would like to set the two file compression settings for the CDR file formats from Draw11 VBA. I will probably modify Alex V. program for converting files...
jimjwiley
Offline Send Email
Nov 13, 2002
8:07 pm
1064
Unless Alex proves my incorrect, I don't believe this is currently possible under VBA. Sorry :-( Shelby ... program ... CMX ... figure...
Shelby L Moore
mooreshelby
Online Now Send Email
Nov 14, 2002
2:02 pm
1065
Hi I've disigned a plug ins for coreldraw and I wanted it to look just like other commandbar in coreldraw(like copy,cut,...) .I tried to add it and make a new...
Hamid Hussany
hamid@...
Send Email
Nov 15, 2002
9:52 am
1066
I am not sure what you mean by plug-in but to add commands to a command bar open Tools>Customization. Open the Commands options (in the Workspace>Customization...
Nathan Howard
deuteriumh
Offline Send Email
Nov 15, 2002
1:53 pm
1067
Hi thanks for the help. but I wanted to do that with VBA. You know , making a Commandbar with Scripts Because I need to do it automatically. HAMID ... From:...
Hamid Hussany
hamid@...
Send Email
Nov 15, 2002
3:24 pm
1068
Hi Folks-- I sent a .gms file (Corel VBA macro) to a guy and he is getting the attached error: <<Convertererror.tif>> He says he has the same references I...
Randall Richard
sylvylou
Offline Send Email
Nov 18, 2002
1:44 pm
1069
Rick, This usually happens that one of the referenced libraries doesn't exist on the user machine. I suspect that it could be the common dialog control that...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 18, 2002
2:47 pm
1070
Hi, I have CAD lineart that I have to change thousands of lines for each drawing I import into Draw11. I am using a simple script. Is there any way to...
jimjwiley
Offline Send Email
Nov 18, 2002
7:03 pm
1071
... I hope you use VBA macro, not a script to do this :) Here is how you speed things up: Sub YourMacro() Optimization = True ActiveDocument.SaveSettings ...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 18, 2002
8:46 pm
1072
Jim, I find that minimizing the screen is one good way. Also, kill all interactive toolbars (property bar) and dockers, since they all update themselves each...
Nick Wilkinson
isocalc
Offline Send Email
Nov 18, 2002
8:52 pm
1073
At or around on or about Monday 03:44 PM 11/18/02 -0500, Alex Vakulenko could be heard whispering in the mist ... Here, here, please post it here. I vote for...
WheelerWerks
gswheels
Online Now Send Email
Nov 18, 2002
11:41 pm
1074
Here it is - Sub OutlineTo005Black() Optimization = True ActiveDocument.SaveSettings ActiveDocument.PreserveSelection = False Dim s As Shape For Each s In...
jimjwiley
Offline Send Email
Nov 19, 2002
9:51 pm
1075
Jim, How about: ActivePage.Shapes.All.SetOutlineProperties 0.005,.... This command can replace the whole loop you have there... Should help a little bit...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 20, 2002
1:34 am
1076
Hi everyone, Corel has posted a quick survey on their web site to see where the next CorelDRAW version will be going. There is a section in the survey devoted...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 20, 2002
5:02 am
1077
Hello, My program have to make a lot of things, so it works a long time. Can I anyway change Statusbar to "Processing" mode, and set its processing bar? ...
Weisz Tamas
giraffe@...
Send Email
Nov 20, 2002
9:21 am
1078
Do you use CorelScript or VBA? ... Alex...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 20, 2002
1:23 pm
1079
I use VBA in Draw11 Tamas ... From: <alexv@...> To: <cdrvba@yahoogroups.com> Sent: Wednesday, November 20, 2002 2:23 PM Subject: Re: [cdrvba] Status Do...
Weisz Tamas
giraffe@...
Send Email
Nov 20, 2002
1:51 pm
1080
I would just hide the status bar (statusbar.Visible = False) and show the progress bar at the same position/coordinates as the status bar was (in its place)....
Alex Vakulenko
alexv1n
Offline Send Email
Nov 20, 2002
2:14 pm
1081
I have Alex's v8 script, but would sure like to have it available in DRAW 10 or 11. Curious why this has not been upgraded to VBA; could it be that it is so ...
Roy Brewer
roybrewer
Offline Send Email
Nov 22, 2002
7:15 pm
1082
CorelDRAW 11 already includes a file conversion script. Go to Tools>Visual Basic>Play... and select FileConverter.gms module... This should do it. ... This is...
Alex Vakulenko
alexv1n
Offline Send Email
Nov 22, 2002
9:13 pm
1083
Alex you sure are fast today. You beat me to the reply. Shelby...
Shelby L Moore
mooreshelby
Online Now Send Email
Nov 22, 2002
10:58 pm
1084
Alex's website seems to be down. I was wondering if someone would be willing the email me his Oberon Function Plotter for Draw 11. Thanks! Shelby...
Shelby L Moore
mooreshelby
Online Now Send Email
Nov 23, 2002
10:57 pm
1085
Has anyone been able to get the any of the following to work from VBA in Corel Photo-Paint 10 or 11: 1. ImageBCI - No matter what I've tried, there is no...
carlericjohnson
Offline Send Email
Nov 24, 2002
12:12 am
Messages 1056 - 1085 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