Results 1 to 6 of 6

Thread: How can I produce Graphs ??

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2000
    Posts
    57

    Unhappy

    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

  2. #2
    Guest
    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.

  3. #3
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446

    GRAPHS

    Does anyone know how to produce a graph in VB with from results such as.

    a 1
    b 4
    c 3

    etc.

  4. #4
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    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.

  5. #5
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446

    BAR GRAPH

    BAR GRAPH...

  6. #6
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    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
  •  



Click Here to Expand Forum to Full Width