I have a database table as:

Code:
COMMENT     VOTES
Great       5
OK          10
Rubbish     2
. . . and I want to use this information to draw a very simple bar chart.

Any ideas?

Simon

[Edited by SimonPearce on 04-16-2000 at 07:56 AM]
Look into using data bound controls DAO and ADO.

Place a Chart on a simple form. Add a Data Control. In this case add a DAO control. Create a ODBC link to you database. IN your Database create a query to supply your data. In VB use this as the recordset. The rest of the details is in the VB docs.

Microsoft wants you to use Data Binding for record access. It can get tricky so read carefully.