I'm well aware of the traditional method to display text in a listbox:
However, I need that same type of function to occur via a query:
Anyone care to show an example of what I'd need to do this?
Code:
lstOutput.Items.Add("Some text.")
Code:
lstOutput.DataSource = Nothing
Dim query = From myTax In TAXDataSet.Inventory
Where (myTax.quantity <= 10)
Select myTax.item, myTax.quantity, myTax.description
**** OUTPUT CUSTOM TEXT HERE, FIRST, THEN *****
lstOutput.DataSource = query.ToList
lstOutput.SelectedItem = Nothing