Hey guys, I have found the root to the problem.
Below is a snippet of code I used in order to retrieve several query results items into the datagrid.
If strSearch = "" Then
strSearch = txtItemId.Text
Else
strSearch = strSearch & " ' or [item_ID] = ' " & txtSearch.Text
txtSearch.Clear()
End If
The above snippet of code stores my queries into string.
What we were doing previously to clear the data of the datagrid was correct, however the above snippet of code which would store my query result as a string, would then load up the same string again whenever I would click the search buttion.
By removing this snippet of code, it would solve the problem, however, I wouldnt be able to hold more than one query result in the datagrid at a time then.
Does anybody know how I could solve this, or tackle it??
Any feedback is appreciated
George