i try to insert result of DataSet to ListView and i got Strange result.
i need to see the result like this:
Fname | Lname | Age
===================
AA | AA1 | 10
BB | BB1 | 20
CC | CC1 | 30
DD | DD1 | 40
i try this:
SQL = "select Fname,Lname,Age from MyCount";
dsView = new DataSet();
adp = new SqlCeDataAdapter(SQL, Conn_Count);
adp.Fill(dsView, "MyCount");
adp.Dispose();
DataTable dplist = dsView.Tables["MyCount"];
for (int i = 0; i < dplist.Rows.Count; i++)
{
DataRow drow = dplist.Rows[i];
ListViewItem lvi = new ListViewItem(drow["Fname"].ToString());
//lstTasks.Columns.Add("Item Column", -2, HorizontalAlignment.Right);
lstTasks.Items.Add(lvi);
}
but i got only one field and i see the result Horizontal like this:
AA BB CC DD
i work on C# for Windows-CE
thanks
Do you add these lines too?