Search found 59 matches

by hansw
Tue Dec 09, 2003 2:16 am
Forum: ActiveX
Topic: Potential Buyer looking for Opinions
Replies: 1
Views: 5634

Re: Potential Buyer looking for Opinions

I am looking at buying an ActiveX graphing control for use in Visual Basic 6 and MS Access 2000. I am an engineer and will be using it for data processing applications...primarily XY scatter graphs with best fit curves (linear and quadratic). Ease of processing data from various sources(text files,...
by hansw
Thu Nov 27, 2003 8:36 pm
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

Pep wrote:Could you please check it again. I've just test it now and I can access.

Josep Lluis Jorge
http://support.steema.com
Does not work here...
Thi is the message I get from Netscape 7.1

http://hans-w.com/steema.jpg
by hansw
Thu Nov 27, 2003 5:28 am
Forum: ActiveX
Topic: Add a Gauge at run time. Problems
Replies: 1
Views: 8949

Add a Gauge at run time. Problems

After creating a gauge at run time it is visble, but I cannot access it to do anything with it. m_ChartGauge.Series(0).GetAsGauge().SetValue(50.0); // does not work Here is the create() function of a formview where I also create the gauge. BOOL C_ControlPanel::Create(LPCTSTR lpszClassName, LPCTSTR l...
by hansw
Thu Nov 27, 2003 5:04 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

Thanks for the help, I would like to see the modfied example. However I cannot access news://www.berneda.com/steema.public.attachments The error message read "the newsgroup doe snot exisit on bernada.com" ! That's why I like this new forum at least I can acess it... Is there anyway to get the file d...
by hansw
Wed Nov 26, 2003 7:50 pm
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

If you're after a TeeChart VC++ surface example build with a version of TeeChart AX less than four years old, may I suggest that you have a look at the example under: C:\Program Files\Steema Software\TeeChart Pro v6 ActiveX Control\Examples\Visual C++\Version 6\SeriesTextSource Best regards, Christ...
by hansw
Wed Nov 26, 2003 4:55 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

Same problem

I've tried to compile this example (from the zip file) and compiles/runs fine here. Could you please re-download the zip file which contains all the examples from . http://www.steema.com/support/faq/NewAX/extrasfaqax/TeeVCExamples.zip unzip and test it again ? Josep Lluis Jorge http://support.steem...
by hansw
Mon Nov 24, 2003 3:06 pm
Forum: ActiveX
Topic: No reply to VC++ example "Surface" does not work!
Replies: 1
Views: 9141

No reply to VC++ example "Surface" does not work!

What's happening with tech. support ?

The thread "VC++ example "Surface" does not work!" stays unanswered !


I'm also not getting replies for paid tech support! !


What going on ? :?:
by hansw
Fri Nov 21, 2003 3:21 pm
Forum: ActiveX
Topic: Teechart ActiveX v5 StopMouse() ?
Replies: 6
Views: 21867

I have no problems to open the popup menues. I only can't avoid the right mouse click to the teechart control. (wich results to a format change of the chart, what i dont want) with using the OnMouseDown event, instead of OnSeriesClick event i can avoid this ? I need the also need the index of the c...
by hansw
Thu Nov 20, 2003 9:41 pm
Forum: ActiveX
Topic: Teechart ActiveX v5 StopMouse() ?
Replies: 6
Views: 21867

Right mouse click popup menu solution

Here is how I do a popup menu. It works for me... hope it helps...:-) Corrected version ! /////////////////////////////////////////////////////////////////////////////// // void C_TeeChartView::OnMouseDownTChart(long Button, long Shift, long X, long Y) { if (Button == LeftButton) { // other left but...
by hansw
Wed Nov 19, 2003 4:15 pm
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

This example is not included in the TeeChart Pro AX installation. Are you sure this project has not been created by you ? Josep Lluis Jorge http://support.steema.com No I have not done a surface example yet, I soon need to get to do it, and that is why I studied the surface example delivered by Tee...
by hansw
Tue Nov 18, 2003 3:09 pm
Forum: ActiveX
Topic: Adding a Gauge when I already have a Line CHart
Replies: 2
Views: 11715

Thanks ...

Hi, the problem is that you are trying to add a Bar series to the Chart instead of a Gauge series. You should do : m_cTeeChartGauge.AddSeries(42); instead of: m_cTeeChartGauge.AddSeries(1); Best Regards Josep Lluis Jorge Steema Support Central Thanks for the help... Yes...once again better Help doc...
by hansw
Tue Nov 18, 2003 2:52 pm
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

Pep wrote:Hi,

which example are you referencing ?

Best Regards !
Josep Lluis Jorge
http://support.steema.com
The project is in surface.zip under Examples: VC++
by hansw
Tue Nov 18, 2003 5:48 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35776

VC++ example "Surface" does not work!

When I compile the surface example and run it. This line in function void CSurfaceDlg::FillSurface() aSeries.SetNumZValues(m_ctrlSlider.GetPos()); throws an exception. ! The message is Invalid Number of parameters ! As it is a "working" example of how to use TeeChart, I wonder why I get the exceptio...
by hansw
Tue Nov 18, 2003 5:08 am
Forum: ActiveX
Topic: Adding a Gauge when I already have a Line CHart
Replies: 2
Views: 11715

Adding a Gauge when I already have a Line CHart

Hi, Please help me with this, I simply can't continue and can't find any documentation about the problem. I added a Gauge control to a FormView http://hans-w.com/Gauge_1.jpg I already have a line series in a different class. I added CTChart1 m_cTeeChartGauge; and DDX_Control(pDX, IDC_TCHART1, m_cTee...