How can I romove double-quotes from a string I'm passing into a parametized query? They cause an error...

VB Code:
  1. inString = "101,102,110,114"
  2. Try
  3.                 Me.ITMTableAdapter.FillByItemIDList(Me.ItemDBDataSet.ITM, inString)
  4.             Catch ex As Exception
  5.                 MessageBox.Show(ex.Message)
  6.             End Try

The WHERE clause in my table adapter fill by query has the following: WHERE ITM_ID IN (@ITM_ID_LST)

Any thoughts would be helpful.

Phillip