473,395 Members | 1,689 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Charting in VB2005

Hi,
I know this ng isn't intended for VB2005 Beta, but I still hope for some
good advice.

Does anyone know of a chart control that works in the VB2005 beta? I've
tried some working with VS2002/3 and some from the good ol' VB6 but they
don't work in the beta :(

Any help appreciated!
/Kejpa
Nov 21 '05 #1
4 3507
"Kejpa" <kS*******@saj.fi> schrieb:
I know this ng isn't intended for VB2005 Beta, but I still hope for some
good advice.

Does anyone know of a chart control that works in the VB2005 beta? I've
tried some working with VS2002/3 and some from the good ol' VB6 but they
don't work in the beta :(


I don't know which of them you already tested:

MSChart (from VB6).

Visual Basic .NET Resource Kit
<URL:http://msdn.microsoft.com/vbasic/vbrkit/>

Includes the following chart components:

ComponentOne Chart for .NET
<URL:http://www.componentone.com/products.aspx?ProductCode=1&ProductID=21>

Dundas Chart for .NET
<URL:http://www.dundas.com/Charting/Gallery/Gallery.aspx>

Remember that beta software is not intended for production use.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #2

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
"Kejpa" <kS*******@saj.fi> schrieb:
I know this ng isn't intended for VB2005 Beta, but I still hope for some
good advice.

Does anyone know of a chart control that works in the VB2005 beta? I've
tried some working with VS2002/3 and some from the good ol' VB6 but they
don't work in the beta :(
I don't know which of them you already tested:

MSChart (from VB6).

Tested, failed

TChart (v5 & .NET)
Tested, failed
Visual Basic .NET Resource Kit
<URL:http://msdn.microsoft.com/vbasic/vbrkit/> Not tested, yet!

Dundas Chart for .NET
<URL:http://www.dundas.com/Charting/Gallery/Gallery.aspx> Not tested, yet!

Remember that beta software is not intended for production use. I know, the charting is for testing redesigned functions

--
M S Herfried K. Wagner


Thanx again
/Kejpa
Nov 21 '05 #3
Our presently shipping release of Dundas Chart for .NET, Version 4.1,
has most features working with VS2005 however there are some design
time issues. These are due to changes to VS interfaces and some .net
framework components are no longer exposed by VS at design time.

Our next release of Dundas Chart for .NET, Version 4.5, will work with
VS2005 to a much greater extent. The Web control has no known issues,
however, there remains one known design time issue with our Windows
Forms control. Our chart is continually being updated and any VS2005
issue will be addressed and be VS2005 compliant by the time VS2005 is
released to the public.

For those unaware of our product support offerings, anyone who has
purchased our Chart Subscription package is entitled to each chart
update as it is released. Typically, we release 4 times per year with
one major and 3 minor releases. With the subscription package you will
always be up to date and are rewarded by many new features and fixes.
Thanks

Andrew Bryan
Program Manager,
Dundas Chart for .NET

Nov 21 '05 #4
Hi Kejpa,
TChart (v5 & .NET)


The Evaluation and Release versions of the TeeChart for .Net component
currently available from www.steema.com will run in the VS2005 beta 1
with a small modification; when running a vb.net winform with an empty
chart dropped onto it you will receive the following error:

NullReferenceExceptioin was unhandled

This error is due to changes made to the handling of designtime
serialisation visibility in the VS2005 beta and can be remedied within
the Solution Explorer: click on the "Show All Files" button and open
the child node of the Form.vb file called called Form1.Designer.vb and
comment out the following line in the InitializeComponent() method:

Me.TChart1.Chart = CType(resources.GetObject("TChart1.Chart"),
Steema.TeeChart.Chart)

You will now be able to run the empty chart. To avoid similar issues in
the VS2005 beta I recommend that you add TeeChart objects to your Chart
at runtime rather than at designtime, e.g.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim Bar1 As New Steema.TeeChart.Styles.Bar(TChart1.Chart)
Bar1.FillSampleValues()
End Sub

These issues will be seamlessly solved in the upcoming TeeChart for
..NET version 2, a beta version of which will become available very
soon.

The currently available version of the TeeChart Pro ActiveX Control,
version 7, works without any issues whatsoever in the VS2005 beta 1.
Again, running a vb.net winform with an empty chart dropped onto it you
will give you no errors; adding objects to it either at designtime or
runtime does not present any problems, e.g.

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
AxTChart1.AddSeries(TeeChart.ESeriesClass.scBar)
AxTChart1.Series(0).FillSampleValues(10)
End Sub

For further free TeeChart support please visit:
http://support.steema.com
Best Regards,

Christopher Ireland
Programmer
www.steema.com

Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jerry Sievers | last post by:
Dear Pythonists; I would appreciate a recommendation of a open source package for charting numeric data such as stock market quotes etc. Have such a thing in PHP called JPGraph which is very...
4
by: Brian | last post by:
I want to develop an application that has an oscilliscope . I was wondering if anyone has experience (good or bad) of any commercial charting packages that will provide this sort of functionality....
6
by: DG | last post by:
is there a charting control that comes with visual studio or i'll have to buy one? what do you reccomend? thanx
2
by: Jesse Aufiero | last post by:
I'm looking for a good third-party charting component with a user-friendly designer. Does anyone know of one? Thanks!
3
by: harris_cohen | last post by:
I am comparing many different charting components for use in my project and am seeking feedback from current users. I have looked at Nevron, Teechart, ComponentArt, SharpGraph and others. Some are...
3
by: Igor | last post by:
Hi all, I'm looking for a tool that can design charts and save chart definitions in a file. I would put those chart definitions in a database and then later load them and render charts (as...
20
by: Joe | last post by:
Is any one charting packing considered to be the "best"? We've used ChartFX but wasn't too happy about the way data had to be populated along with some other issues which slip my mind right now and...
2
by: frederick austin | last post by:
Dear Developers, Is it possible to create charts using VB2005 Express Edition or do I need the real thing ? I am trying to develop a charting system that works with day end figures and would...
2
by: RobcPettit | last post by:
Hi, can anyone suggest how to go about charting. Id like to add a price graph/ma graph and volume chart. My data streems from the internet every second. Ive looked at components but most are out of...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.