This code worked for me.
DataTable dt = ds1.Tables[0];
DataRow[] foundRows;
while (a < lbCombo.Items.Count)
{
string Z = lbCombo.Items[W++].Text;
{
string strExpr = "COLUMN_DESC = '" + Z + "'";
string strSort = "VIEWNAME DESC";
foundRows = dt.Select(strExpr, strSort);
string strText = null;
int i = 0 ;
string f = foundRows[i].ItemArray[0].
ToString();
string g = foundRows[i].ItemArray[1].ToString();
strText = f + "." + g;
lbInvis.Items.Add(strText);
lbInvis.DataBind();
}
a++;
}