Using vb.net 1020
my code is fairly simple. I have a dataset with the named table in it, but I get an error on VM_Sandbox2Data Set.Tables as "Reference to a non-shared member requires an object reference."
What am I missing?
my code is fairly simple. I have a dataset with the named table in it, but I get an error on VM_Sandbox2Data Set.Tables as "Reference to a non-shared member requires an object reference."
Code:
Dim table As DataTable = VM_Sandbox2DataSet.Tables("OTQ_CUST_UNIT")
Dim rows() As DataRow = table.Select("Supply_Base_ID = '" & OtqSerNo_TextBox.Text & "' AND SUPPLY_LOT_ID = '" & LotID & "'")
Comment