... check out : http://support.microsoft.com/support/kb/articles/Q198/9/01.ASP?LN=EN- US&SD=msdn&FR=1&qry=printer% ...
efgor@...
Jun 1, 2001 2:47 pm
235
Thanks Alex, however I dont think that will work. If I do it that way I can only add commands that are CorelDraw supplied. Let me elaborate on what I am...
sgutauckis@...
Jun 1, 2001 3:19 pm
236
... This is not completely true. CorelDRAW also allows you to add buttons and menu items for VBA macros that you define. If you go to Macros category in ...
Alex Vakulenko
alexv@...
Jun 1, 2001 3:32 pm
237
Thanks Alex, After further review and some info from another web site I got the connection between "user menus" and "commands"... Looks like this may work......
sgutauckis@...
Jun 1, 2001 9:48 pm
238
... No, I guess your code has some error in it. At least, I never heard of a problem like that before... ============================= Alex Vakulenko,...
Alex Vakulenko
alexv@...
Jun 1, 2001 10:09 pm
239
I do technical illustration using Corel Draw. Some of the parts we make fairly frequently are gears of various tooth configurations. Many of the gears have 45...
Jill Tallman
jtallman@...
Jun 4, 2001 12:59 pm
240
Jill, This is something that I wrote a program to do a long time ago. The program's called RadIt and you can get it from www.isocalc.com/cooltools/ ......
Nick Wilkinson
nick@...
Jun 4, 2001 7:30 pm
241
Yes, Nick, I actually picked it up a month or so ago, but never used it because I wanted it for Draw 10. Jill ... snipped...
Jill Tallman
jtallman@...
Jun 5, 2001 12:21 pm
242
It has been a little quiet and I have had this on my mind for a while so I thought I would ask. These seems to be several options to enhance CorelDraw, these...
Shelby L Moore
shelbym@...
Jun 6, 2001 11:20 am
243
Hi Shelby, ... The basic difference is the following: VBA === Pros: 1. Runs fast because all calls to CorelDRAW are made in the same process (VBA is a DLL...
Alex Vakulenko
alexv@...
Jun 6, 2001 2:23 pm
244
Jill I just finished reading CorelDRAW10..'The Official Guide'..and noticed in there some ideas in there on drawing gears using the polygon tool and trimming...
Ian Vincent
vincent@...
Jun 6, 2001 10:12 pm
245
Hi Shelby..Alex..all Im interested in this speed comparison thing..does someone have a benchmark that they use..like create 100 rectangles and fill them red.....
Ian Vincent
vincent@...
Jun 6, 2001 10:52 pm
246
Hi Ian, I have a 300MHz Pentium. This code takes 2 seconds to run. It creates 100 rectangles and fills them with red. I am sorry, I am not familiar with...
Rick
rfox@...
Jun 7, 2001 4:44 am
247
Ian, ... benchmark ... That's a good idea. I did some testing before and just tried it again to refresh my memory. Please note that the results obtained from...
Alex Vakulenko
alexv@...
Jun 7, 2001 3:19 pm
248
Oh, and I forgot to mention that the test I was talking about in my previous post was performed on Pentium II 450 MHz, CorelDRAW 10.410, VB 6.0 SP4 in case you...
Alex Vakulenko
alexv@...
Jun 7, 2001 3:23 pm
249
... Sorry for the confusion... ================================== Alex Vakulenko, alexv@... http://www.vakcer.com/oberon...
Alex Vakulenko
alexv@...
Jun 7, 2001 3:43 pm
250
... Alex I clipped the Sub Test1() code into VBA and ran it.. it took 37 seconds on my AMD350Mhz..with 256MB Ram and CorelDraw 4.10. Significantly slower than ...
Ian Vincent
vincent@...
Jun 7, 2001 9:15 pm
251
Ian, I don't know why your results are significantly slower than you would expect, but here are some more observations... I did the tests on my home machine...
Alex Vakulenko
alexv@...
Jun 7, 2001 9:51 pm
252
On my Dell PIII 600 with 128mb Ram I get: VBA Example Test1: 13.27 secs Test2: .11 secs I had my brother make me the COM Add-in (Since he has VB), and it...
Shelby L Moore
shelbym@...
Jun 8, 2001 1:04 pm
253
Hi Shelby, ... fine ... You need to register it. You can use RegSvr32.exe that is in Windows\System (or WinNT\System32 for NT/2000). Just open the folder with...
Alex Vakulenko
alexv@...
Jun 8, 2001 2:02 pm
254
Hi again everyone, I just wanted to let you know that I have posted a new cool utility to my web site which can create a help file or HTML file containing all...
Alex Vakulenko
alexv@...
Jun 8, 2001 2:25 pm
255
Shelby..any chance of a copy of the BenchMarkTest Comm Add-In, id like to try it on my machine..outa interest..I also dont have VB yet. Ian...
Ian Vincent
vincent@...
Jun 10, 2001 8:49 pm
256
Ian, ... I guess I'll step in here :-) I have attached the two addins with source code for those who are interested. You need to register the DLL for each...
Alex Vakulenko
alexv@...
Jun 11, 2001 2:12 pm
257
Oh, and I forgot to mention, that the plug-in DLLs that I have sent require VB6 run-time files. If you don't have them, the plug-ins won't work (obviously)....
Alex Vakulenko
alexv@...
Jun 11, 2001 2:17 pm
258
I am trying to apply a set style of outline to a group of shapes. This works sometimes but not all. Can anyone tell what's wrong? I need to be able to apply...
Georgeann Schilling
gs@...
Jun 11, 2001 8:25 pm
259
Great tool Alex..I can see how it would be excellent for help documentation of ocx, if one was into making those. I hope you get a few 'royalties' for your...
Ian Vincent
vincent@...
Jun 11, 2001 8:42 pm
260
Georgeann, ... works ... There are a couple of problems in your code... First, for normal (not group) shape, Shapes collection always has 0 elements (not 1)....
Alex Vakulenko
alexv@...
Jun 11, 2001 8:50 pm
261
Hi Alex, I got a little farther..thanks. My other question is where in the code below do I put Shape.Outline.SetProperties. I guessed where to place it.. and...
Georgeann Schilling
gs@...
Jun 12, 2001 12:55 pm
262
Georgeann, ... You are supposed to use it instead of the whole Width s.Outline...End With block. However you may be right, something is wrong with this method....
Alex Vakulenko
alexv@...
Jun 12, 2001 2:51 pm
263
Hi I need to figure out how to determine the intersection point of a line that runs from the true center of an ellipse..on any given angle.. and the ellipse...