|
-
Sep 25th, 2000, 08:28 AM
#1
Thread Starter
Member
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
-
Sep 25th, 2000, 10:11 AM
#2
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.
-
Oct 10th, 2000, 04:42 AM
#3
Hyperactive Member
GRAPHS
Does anyone know how to produce a graph in VB with from results such as.
a 1
b 4
c 3
etc.
-
Oct 10th, 2000, 08:12 AM
#4
transcendental analytic
What sort of graphs?
curves, bars, pies, 3d ?
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Oct 10th, 2000, 08:34 AM
#5
Hyperactive Member
-
Oct 10th, 2000, 09:45 AM
#6
transcendental analytic
Code:
For X=0 to ubound(arr)
line (X,100) - step(-arr(x),0)
Next X
I hope you get the idea, this draw lines on a form (scalemode set to vbpixel) to show a simple bar graph of an array
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|