Within my VB app., I need to produce graphs, from data stored in MS Access database.
What can I use ??
What can I use that doesn't cost money ??
Bob
Printable View
Within my VB app., I need to produce graphs, from data stored in MS Access database.
What can I use ??
What can I use that doesn't cost money ??
Bob
If you have installed the Visual Studio you counld try the Microsoft Graph Control (mschrt20.ocx).
I think that this is part of Visual Studio.
It can do anything that you can in Excel, so should suit most needs.
J.
Does anyone know how to produce a graph in VB with from results such as.
a 1
b 4
c 3
etc.
What sort of graphs?
curves, bars, pies, 3d ?
BAR GRAPH...
I hope you get the idea, this draw lines on a form (scalemode set to vbpixel) to show a simple bar graph of an arrayCode:For X=0 to ubound(arr)
line (X,100) - step(-arr(x),0)
Next X