Hello
I have a datagridview, and I would like to run some queries (fill queries).
when I run a fill query, my dataggridview show only one row, depending on the query parameter. How can I run a query multiple times, without removing the previous rows?
I am using the:
Me.TblWaypointsTableAdapter.EVGetWP(Me.NWVoyDBvw_1DataSet.tblWaypoints, CType(WaypointIDToolStripTextBox.Text, Integer))
But when I run this query, all previous data in the datagridview is removed, and it shows only one row.
I would like to retrieve one by one row from my dataset.
Any ideas for how I can do this?
Regards
Quazy