It looks like the only way I can generate a chart in VB2005 is to use Drawing2D which is a pain. Because I don't want to use any third party packages I will have to learn ho to do this. Any suggestions will be much appreciated. Thank you, Maria
mariap
Posts
-
Generate chart / graph in Visual Basic -
Generate chart / graph in Visual BasicHi everyone, I am looking for a way to generate a graph in VB based on data coming from an Access database. Can anyone guide me into the right direction? I could not find anything posted here to show me how to do it and the books I have does not mention a thing about Graphs. Any help will be much appreciated, Maria
-
datagrid data to access databaseThanks Paul, This is what I have done so far but it doesnt work: ################################################################## Dim newRows as DataRow = DatabaseDataSet.Tables("Table1").NewRow() Dim dr As DataRow For Each dr In Me.DataGrid1.Rows newRows = dr DatabaseDataSet.Tables("Table1").Rows.Add(newRows) Next ################################################################## Please help! Maria
-
datagrid data to access databaseI need help with updating an access database table(access database is included in my project). my data comes from an xml that will periodically be updated and displayed on a DataGrid field. I manage to display the data onto datagrid and now I want to copy the displayed data into an access database table. Does anyone knows how to do that? Thanks for your help Maria