I'm going great guns on my slide rule project - thanks to members of the Slide Rule group (and you thought this group was abstruse!) I now have the basic...
Joe, The rounding errors are due to the fact that numbers are stored as a _hexadecimal_ value and then converted to decimal on the fly -- it's not possible...
Thanks again. I've started to semi-automate this process and am switching to a subroutine tic maker with passed variables. This way I can choose from among...
I recently purchased DRAW 10 ACADEMIC from my university only to find out that VBA is not included and (according to Corel techsupport) their is "no way" to...
when installing corel 10 you have to select "custom" install and check VBA otherwise you don't get it.--rick ... From: Josh Gladden [mailto:jgladden@...] ...
As I rework my program, I have used 4 different methods to create the scales that all work. I wish to create a "Universal Tickmaker" that I can feed variables...
... NO! NO! NO! NO! NO! NO! NO! GET OUT OF THAT HABIT RIGHT NOW! Using public variables, which usually indicates that the variables are 'global', is almost...
Thanks again! I'm printing out C,Cl,DF,K and L scales now that look pretty good. I even am printing Pi where needed as a label. This is not bad considering it...
Hi Josh, ... Nick is right, but there is a workaround : you can write and execute Corel (VBA) macros from your Visual Basic 6 program. With two drawbacks : 1)...
Thanks Jean-Marie! That worked fine. The Draw library was included with VB6 and your program worked fine. Although even with such a simple program I can ...
I've just upgraded to Draw 11 and am now having the problem I had with the initial version of Draw 10. When I do the following I get a message that says...
Yikes! Thanks for posting this - now I'm not going to upgrade until I hear otherwise... CT... ... From: cornmen To: cdrvba@yahoogroups.com Sent: Tuesday,...
I've just contacted Corel about the problem I am having with structsaveasoptions. I sent him the vba as posted previously and he received the same error as...
Conmen, Surely you have to New the struct? I.e., the following works fine for me: Dim opt As New StructSaveAsOptions opt.Version=cdrVersion7 The structs in the...
Mick, You are right, I forgot to put in the New in my example. And it does work when using it from within Draw 11. It does not work however when using it from...
Back when we used to program on computers with very limited basic languages, there were all sorts of tricks to do things. For instance to change the sign of a...
Format(i, ".0") Ah, that doesn't work for numbers where the integer is not zero. My mistake. Try: Format(Round( X-int(X) , 1), ".0") HTH. -- Nick Wilkinson. ...
I've received an email Corel regarding the problem I was having with the structs from an external vb application. Apparently CreateStructSaveAsOptions has...
That's not paint, it's dead bugs... ... SNIPPED ... __________________________________________________ Do You Yahoo!? HotJobs - Search Thousands of New Jobs ...
I wish to send email to this group. Thanks, Nathan Howard _________________________________________________________________ Send and receive Hotmail on your...
Can Anyone give me some insight on creating rollover effects using vba. I have tried recording a macro to see what is going on but get nothing. I also tried...
... From: "Nathan H" <deuteriumh@...> To: <cdrvba@yahoogroups.com> Sent: Monday, August 12, 2002 9:51 PM Subject: [cdrvba] Programmatically Create...
ron
ronhd@...
Aug 13, 2002 12:52 pm
952
Your question seems a bit fractured in logic. Are you trying to create rollover effects in draw, or using draw to design rollover effects, or do you want a web...
I have tried recording a macro acc.the effect envelope to see what is going on but get nothing. (cdraw 10, build 427) Now the question is, if the cdraw 11...
What I would like to do is simply add a rollover effect and hyperlink to a graphic that will be exported as an svg file and inserted into an html document. I...
That makes more sense now :-) However, I have never used SVG so I can't answer your question. But I now have one myself -- Does Netscape 4x, Netscape 6x, or...
I'm pretty new to VBA and this question must have a simple answer. I'm writing a macro to read in a list of data to plot in DRAW10 from a text file. The code...
You may need to add a reference to "Microsoft Common Dialog Control 6.0" to get the following code to work. To do this, select "Tools | References" on the menu...