Search found 17 matches

by scottpj
Tue Jan 02, 2007 3:58 pm
Forum: VCL
Topic: TeeChart v8 VCL Beta Released
Replies: 58
Views: 98842

Beta Tester Version8

I would like to be added to the Beta Testers for Ver8.

mailto:Patrick.Scott@c-a-m.com
by scottpj
Tue Aug 29, 2006 1:17 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

Would also like the quick fix

My email is scottpj@nuflotech.com.
Thanks in advance.

Patrick
by scottpj
Wed Jul 19, 2006 2:49 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

Compiled and found same errors.

1. Extracted the code to C:\CPP Extracted to Builder2006 directory. 2. Ran Borland Developer Studio 2006 and open project file in C:\CPP\Builder2006 Window popup with Title => Find Static Library Unable to find static library: Tee710.lib 3. Set to: C:\Program Files\Steema Software\TeeChart 7.08 for ...
by scottpj
Wed Jul 19, 2006 1:44 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

Thanks, downloaded and will test

Narcis,
I have downloaded the file.

Thanks again for all the time and support.
Have a great day. I will compile and test the code.
by scottpj
Wed Jul 19, 2006 1:27 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

Firewall protection/security scan software problem

Narcis, It appears from the header of the email that the security software is removing all attachments and marking your email as spam. So even though I set my level to do not mark as spam. It looks like a IT department problem of which I am not able to go around. I could download it from an ftp site...
by scottpj
Wed Jul 19, 2006 1:11 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

Your email was added to my spam list, have now removed

Marcis, I have removed the automatic spam assignment for your domain and user name. I hope that is what the problem was. Josep was sending emails directly while we worked out the details of the problem with the software. These emails are not posted. I did login to your email system and I found nothi...
by scottpj
Tue Jul 18, 2006 10:10 pm
Forum: VCL
Topic: 7.08 and 7.07 C++ example code compile failure
Replies: 16
Views: 22351

I did not get the "mail" => email

Josep,
I did not see any email from you today!?
by scottpj
Thu Jul 13, 2006 1:39 pm
Forum: VCL
Topic: Modification of Line Plot Title using C++
Replies: 7
Views: 10105

[Solved] Title work as advertised

It appears that the problem is due to an errant usage of a variable as a pointer. The fix was to change my code from using separate statement for X and Y value to a single statement. From Series1->XValue[LoopCnt] = UIValues .V; Series1->YValue[LoopCnt] = UIValues .V; To Series1->AddXY(XValue,YValue ...
by scottpj
Thu Jul 13, 2006 1:26 pm
Forum: VCL
Topic: C++ Update of TDBChart data plot variables failure
Replies: 4
Views: 7370

[Solved]Misuse of /Bad interface to SetXValue

I Found that a single statement for declaring X and Y works better with out any exceptions. Series1->AddXY(XValue,YValue ,"",clTeeColor); Instead of setting each value of X and Y using a separate statements. Series1->XValue[LoopCnt] = UIValues .V; Series1->YValue[LoopCnt] = UIValues .V; The exceptio...
by scottpj
Mon Jul 10, 2006 2:06 pm
Forum: VCL
Topic: Modification of Line Plot Title using C++
Replies: 7
Views: 10105

Additional information about missing files

I noticed that you had a file called Base.cpp and Base.hpp. In them I found your declaration of global variables, of which I am using Chart1, which are needed for EditChart(). Looking at the include files I see several files that I am not seen before. From the labeling several appear to be yours, Te...
by scottpj
Mon Jul 10, 2006 1:50 pm
Forum: VCL
Topic: Modification of Line Plot Title using C++
Replies: 7
Views: 10105

Posted under a different thread 7.08 and 7.07 C++ example co

7.08 and 7.07 C++ example code compile failure
by scottpj
Mon Jul 10, 2006 1:43 pm
Forum: VCL
Topic: Modification of Line Plot Title using C++
Replies: 7
Views: 10105

I found the problem

After reviewing the example code and the hints from your comments, I decided to try adding the following: #include <stdio.h> #include "EditChar.hpp" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma link "Base" #pragma resource "*.dfm" ...
by scottpj
Fri Jul 07, 2006 4:50 pm
Forum: VCL
Topic: C++ Update of TDBChart data plot variables failure
Replies: 4
Views: 7370

Could not create an instance

Tried to create an instance to TSubTitle MySubTitle. Could not get the approach to work. Found that TSubTitle example (Chart_SubTitles .cpp and .h) which shows a class based on TBaseForm. This appears to be a strange usage?! Why is it a form. This causes me to wonder how the DBChart1 instance is for...
by scottpj
Fri Jul 07, 2006 4:03 pm
Forum: VCL
Topic: C++ Update of TDBChart data plot variables failure
Replies: 4
Views: 7370

Try the fix and get a system error

[C++ Error] TabMethodDlg.cpp(203): E2285 Could not find a match for 'TStrings::operator =(char *)' which is a basic problem with the default "" format is (char *) type and the SubTitle->Title does not have a method for the "=" operator. Your attempted example seems to suggest that I only need to cre...
by scottpj
Fri Jul 07, 2006 2:51 pm
Forum: VCL
Topic: C++ Update of TDBChart data plot variables failure
Replies: 4
Views: 7370

C++ Update of TDBChart data plot variables failure

While trying to change the designtime settings for a line plot, I used the following code: //---------------------------------- if (Series1->Count() != 0) { // remove all previous data, then lets add the points Series1->Clear(); } // ready for new data Series1->XValues->Order = loNone; Series1->YVal...