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...
Show off your group to the world. Share a photo of your group with us.

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 1028 - 1057 of 1101   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1028
Hi--- I am trying to create a macro that can clean up line art from imported cad/3d files. The lines in the drawings are always broken apart instead of...
Randall Richard
sylvylou
Offline Send Email
Oct 2, 2002
2:08 pm
1029
Rick, Alex has already written a script that does exactly this. Here is the code, I use this almost every day: Sub DoCloseShape() Dim s As Shape Dim e As...
Shelby L Moore
mooreshelby
Offline Send Email
Oct 2, 2002
2:30 pm
1030
Could somebody help me how to call Corel add-ins (made according to http://www.vakcer.com/oberon/vba/comaddins.htm) from external VB program? Zoltan...
Antobal
szantoz
Offline Send Email
Oct 4, 2002
2:36 pm
1031
Hi Zoltan, ... This should work (tested with Corel 10 & VB 6 under Win ME) : Private Const WM_COMMAND As Long = &H111 Private Declare Function SendMessage Lib...
Jean-Marie Pierrard
jmpierrard
Offline Send Email
Oct 6, 2002
1:52 pm
1032
I have a script that exports the CDR to PDF and AI when the user clicks on Save or Save As. I would like to know if there is a way in VBA Corel 10 that you can...
joannelyver
Offline Send Email
Oct 7, 2002
2:01 pm
1033
To combat an influx of spam, I've changed my e-mail to lettuce@... Thanks Jill __________________________________________________ Do you Yahoo!? Faith Hill...
Jill Tallman
lettuce_in_fl
Offline Send Email
Oct 10, 2002
6:31 pm
1034
Hi Jean-Marie, Thank you very much. Best regards, Zoltan ... From: Jean-Marie Pierrard [mailto:jeanmarie.pierrard@...] Sent: Sunday, October 06, 2002...
Antobal
szantoz
Offline Send Email
Oct 13, 2002
8:33 pm
1035
Hi Zoltan, ... You're welcome! In the meantime, I have found a shortcut, thanks to Spy++ ... 'to launch the first add-in : SendMessage .Handle, WM_COMMAND,...
Jean-Marie Pierrard
jmpierrard
Offline Send Email
Oct 14, 2002
1:30 am
1036
Hi Jean-Marie Yes, it's even better. Thank you again. To check the availability of the add-in I can use the following code: Function addin_exists as Boolean ...
Antobal
szantoz
Offline Send Email
Oct 14, 2002
12:51 pm
1037
Hello, my question is about file properties. I need to get date and time of an opened file in PhotoPaint9/10. I mean date and time when the file was last...
jspatzier
Offline Send Email
Oct 17, 2002
10:19 pm
1038
Here is a VBA example: Sub GetFileDate() MyStamp = FileDateTime("C:\Garden 001.cpt") MsgBox MyStamp End Sub...
Shelby L Moore
mooreshelby
Offline Send Email
Oct 17, 2002
10:49 pm
1039
VBA.FileSystem.FileDateTime No idea how to use it, though. Something like: Dim fs As New VBA.FileSystem Dim dt As Date dt = fs.FileDateTime("c:\foo.cpt") You...
Nick Wilkinson
isocalc
Offline Send Email
Oct 17, 2002
10:51 pm
1040
Ah, I see Shelby has it and my version was overkill, since FileDateTime is implicit as you're running in the VBA environment. Silly me. -- Nick Wilkinson. ...
Nick Wilkinson
isocalc
Offline Send Email
Oct 17, 2002
10:52 pm
1041
thanks a lot, this will work. But is also a Corel Script version available? Would be easier in my case. Again, thanks Jörg Spatzier ... I...
jspatzier
Offline Send Email
Oct 18, 2002
11:13 pm
1042
I have been trying to add items to a combobox in VBA/Excel and it is not working. I have tried the following and both give me a blank list but run without an...
shanerestin
Offline Send Email
Oct 19, 2002
3:52 pm
1043
found it, in SCRIPT it is almost the same, thanks for your hint: FILEDATE function retval = FILEDATE("C:\myfiles\mytext.txt") ... my ... PhotoPaint9/10....
jspatzier
Offline Send Email
Oct 20, 2002
8:06 am
1044
Hi Zoltan, ... vbMinimizedFocus) ... Yes, in order to register the addin, without the VB Add-In Designer, I think you have to use a specific reg file. At...
Jean-Marie Pierrard
jmpierrard
Offline Send Email
Oct 20, 2002
9:17 am
1045
Look at the following code: Dim cdr As CorelDRAW.Application Dim doc As CorelDRAW.Document Set cdr = CreateObject("CorelDRAW.Application.11") Set doc =...
sgutauckis
Offline Send Email
Oct 22, 2002
1:13 pm
1046
Well, I think I figured it out. I tried uninstalling CD10. This seemed to only add tot he problems as when I tried to now run my projects for CD11 I was...
sgutauckis
Offline Send Email
Oct 23, 2002
12:58 pm
1047
cyc> Dim cdr As CorelDRAW.Application cyc> Dim doc As CorelDRAW.Document cyc> Set cdr = CreateObject("CorelDRAW.Application.11") May be you have to use Dim...
Dorogoj Dmitry
dorogoj_ru
Offline Send Email
Oct 24, 2002
2:35 am
1048
Hi, Has anybody an idea why one can't obtain the Corelscript object in version 11 of PP? I keep getting error 13 type mismatch. I need to get the CorelScript...
thilot71
Offline Send Email
Oct 28, 2002
3:01 pm
1049
Correct my if I am wrong, but since CorelScript is part of the Application Object it is not nessacary to Set the App if the script is used within VBA correct? ...
Shelby L Moore
mooreshelby
Offline Send Email
Oct 30, 2002
2:48 pm
1050
You should define the oScript object as Object, not PHOTOPAINT.CorelScript: Dim oScript As Object Plus, the old commands like EffectRemoveNoise do not work...
Alex Vakulenko
alexv1n
Offline Send Email
Oct 30, 2002
3:21 pm
1051
Alex, you are kidding, aren't you? I can't imagine that Corel would degrade their COM interface into that #~!§$%& you described. Goodness - you are not...
Thilo Trautwein
thilot71
Offline Send Email
Oct 30, 2002
5:18 pm
1052
Hi Shelby, you are right with "if the script is used within VBA" being the key point. This works fine here as well. Unfortunately I have to use the "real"...
Thilo Trautwein
thilot71
Offline Send Email
Oct 30, 2002
5:18 pm
1053
Thilo, ... The easiest way to figure out all the parameters is by recording a script. Open the Recorder docker, click the record button, then go to Effects...
Alex Vakulenko
alexv1n
Offline Send Email
Oct 30, 2002
6:01 pm
1054
Alex, On Wed, 30 Oct 2002 12:59:22 -0500, you wrote: ... I agree with you 100% here. Thanks for switching on the light in the dark. The really sick part is...
Thilo Trautwein
thilot71
Offline Send Email
Oct 31, 2002
9:58 am
1055
OK Here is a dumb one for ya, but it doesn't hurt to ask. Anyone else notice that with a VBA UserForms under XP the command buttons are not the pretty XP...
Shelby L Moore
mooreshelby
Offline Send Email
Nov 1, 2002
3:56 am
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
Messages 1028 - 1057 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