Hello,
Are there any known scenarios when we get access violation error.
Or is there any thing based on the module number which is shown in the exception?
Please help.
Search found 26 matches
- Fri Oct 29, 2010 7:29 am
- Forum: ActiveX
- Topic: Access Violation Error
- Replies: 1
- Views: 3974
- Mon Oct 25, 2010 9:43 am
- Forum: ActiveX
- Topic: DrawLine problem
- Replies: 1
- Views: 4060
DrawLine problem
Hello, I am now trying with Teechart ActiveX Pro 8 version and seems that the older problems are resolved. But now when i am using the code to drawline which was perfectly drawing lines in version 7 seems to have some problem in version 8. I am using following code CPen1 penMass1 = m_canvas[nChartIn...
- Wed Oct 20, 2010 9:04 am
- Forum: ActiveX
- Topic: Access Violation Error
- Replies: 4
- Views: 8768
Re: Access Violation Error
This does not solve my problem. It shows me access violation error if i dont put setActive. Any ways i still get the graph dissapearing and chart resizing issue? I have posted the problem here http://www.teechart.net/support/viewtopic.php?f=1&t=11657 and also i have posted the code. AS it is real ti...
- Mon Oct 18, 2010 7:21 am
- Forum: ActiveX
- Topic: Access Violation Error
- Replies: 4
- Views: 8768
Re: Access Violation Error
Some help would be appreciated If i comment setActive(false) and setActive(true) then I get access violation error And if I do setActive(false) then addxy then setActive(true) then I cannot view the graph properly. The graph momentarily dissapears and then it gets plotted. What can be the solution P...
- Fri Oct 15, 2010 1:02 pm
- Forum: ActiveX
- Topic: Access Violation Error
- Replies: 4
- Views: 8768
Access Violation Error
Hello, Thanks for your response, Now I am getting access voilation error. Also can you please tell me the normal flow for painting as I read that graph.Repaint must be called after adding points to the series. So is there any protocol in which things should be carried out? In my case i am doing thin...
- Fri Oct 15, 2010 9:55 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hello, Thanks for your response, the above problem was solved by adding m_graph[nChartIndx].RedrawWindow(); Now I am getting access voilation error. Anyways can you please tell me the normal flow for painting as I read that graph.Repaint must be called after adding points to the series. So is there ...
- Mon Oct 11, 2010 5:30 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hello, I could not reproduce the error in demo code. Any ways i am giving you the code for initializing and plotting the graph. I get a lot of trouble in viewing the graph, as the graph flickers a lot, The height of graph also increases and also the left axes dissapears frequently, void CManualTunni...
- Fri Oct 08, 2010 9:31 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi,
I am sorry but due to company policy I cannot do that.
Anyways thanks.
I am sorry but due to company policy I cannot do that.
Anyways thanks.
- Fri Oct 08, 2010 9:03 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi,
Thanks a lot for that.
I have implemented it.
Now while drawing teechart the graph gets invisible very fast. Also it is showing error
canvas does not allow drawing
So how do I solve this problem??
Thanks,
Thanks a lot for that.
I have implemented it.
Now while drawing teechart the graph gets invisible very fast. Also it is showing error
canvas does not allow drawing
So how do I solve this problem??
Thanks,
- Fri Oct 08, 2010 6:04 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi I am refactoring to FastLineSeries, I have done some part of it. But i am facing some problems. I had implemented following methods in my older code so where do I get equivalent of these in Fast line series class? m_series[1].GetAsLine().GetPointer().SetVisible(true); m_series[1].SetCursor(crHand...
- Fri Oct 08, 2010 5:35 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi,
I added
CFastLineSeries m_series[MAX_GRAPHS];
but seems that it does not have clear method on it.
as when i do m_series[1].Clear();
it gives me error C2039: 'Clear' : is not a member of 'CFastLineSeries
so what is the equivalent method I must use?
I added
CFastLineSeries m_series[MAX_GRAPHS];
but seems that it does not have clear method on it.
as when i do m_series[1].Clear();
it gives me error C2039: 'Clear' : is not a member of 'CFastLineSeries
so what is the equivalent method I must use?
- Thu Oct 07, 2010 12:49 pm
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hello,
Can you please give me an run as it is example for FastLine in C++. So that it would be easy for me to implement.
Coz we have project delivery lined up and seems that implementation of FastLine would solve many of our problems,.
Waiting for an early response.
Thanks,
Can you please give me an run as it is example for FastLine in C++. So that it would be easy for me to implement.
Coz we have project delivery lined up and seems that implementation of FastLine would solve many of our problems,.
Waiting for an early response.
Thanks,
- Wed Oct 06, 2010 8:30 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
- Wed Oct 06, 2010 8:29 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi,
I had done
#include "fastlineseries.h"
And I cannot find Teechartdefines.h
And also I did addSeries(6);
but i cannot get Property Series1.XValues.Order
I found similar
m_series.GetXValues().SetOrder(loNone);
But its also giving error.
Thanks,
I had done
#include "fastlineseries.h"
And I cannot find Teechartdefines.h
And also I did addSeries(6);
but i cannot get Property Series1.XValues.Order
I found similar
m_series.GetXValues().SetOrder(loNone);
But its also giving error.
Thanks,
- Wed Oct 06, 2010 7:29 am
- Forum: ActiveX
- Topic: FastLine example
- Replies: 22
- Views: 26697
Re: FastLine example
Hi,
I am doing
m_graph.AddSeries(scFastLine); as per suggested in the previous example.
I get error
error C2065: 'scFastLine' : undeclared identifier
Error executing cl.exe.
I could not find VC++, FastLine example. If it is there can you please tell me which one is it?
Thanks,
I am doing
m_graph.AddSeries(scFastLine); as per suggested in the previous example.
I get error
error C2065: 'scFastLine' : undeclared identifier
Error executing cl.exe.
I could not find VC++, FastLine example. If it is there can you please tell me which one is it?
Thanks,