Error:"Object must implement IConvertible. "http://forums.asp.net/t/338918.aspx/1?Error+Object+must+implement+IConvertible+Mon, 15 Sep 2003 17:20:41 -0400338918338918http://forums.asp.net/p/338918/338918.aspx/1?Error+Object+must+implement+IConvertible+Error:"Object must implement IConvertible. " Hi, I am in the process of creating a Search form that when accessed (On page load)will return the "Most Recent Entries". Below is the snippet of code for this portion - and I am getting this error "Object must implement IConvertible" and I do not know where I have gone wrong, can some one please enlightened: Thanks Public Sub MostRecent() Dim connString1 As String = ConfigurationSettings.AppSettings("connString1") 'bkf-sql1/jHelp Dim cnnConnection As New System.Data.SqlClient.SqlConnection(connString1) Dim cmdCommand As New System.Data.SqlClient.SqlDataAdapter("SELECT TOP 10 * FROM (CIC_ItemStatus) ORDER BY SentToBkf DESC", cnnConnection) cmdCommand.SelectCommand.Parameters.Add("@ID", SqlDbType.Int, 8).Value = Request.QueryString() '"127" Ds = New DataSet cmdCommand.Fill(Ds, "MostRecent") dtlEntries.DataSource = Ds.Tables("MostRecent").DefaultView dtlEntries.DataBind() lblEntries.Text = Ds.Tables("MostRecent").Rows(0)("Submit_Date").ToString() lblEntries.Text = Ds.Tables("MostRecent").Rows(0)("CIC_CatNbr").ToString() lblEntries.Text = Ds.Tables("MostRecent").Rows(0)("CIC_Category").ToString() End Sub 2003-09-15T17:13:10-04:00