Zdravím, mám jeden dotaz, jelikož na komponentu LV nejde použít wizard jako na DGW, chtěl bych se zeptat, jak postupovat při vypisování jednotlivých řádku z DataTable, viz kód:
Díky za každou radu
// Load Data from the DataSet into the ListView
SqlConnection conn = new SqlConnection(@"
server = .\SQLEXPRESS;
integrated security = true;
database = Phone_directory");
conn.Open();
//definuj skalarni dotaz
string sqlIns = @"SELECT * FROM tbl_phonebook";
//create query
SqlCommand cmdQry = new SqlCommand(sqlIns, conn);
SqlDataAdapter da = new SqlDataAdapter(cmdQry);
DataSet ds = new DataSet();
da.Fill(ds, "tbl_phonebook");
// Get the table from the data set
DataTable dtable = ds.Tables["tbl_phonebook"];
// Clear the ListView control
listViewUsers.Items.Clear();
// Add a column with width 20 and left alignment.
listViewUsers.Columns.Add("mobile_phone", 100, HorizontalAlignment.Left);
listViewUsers.Columns.Add("name", 100, HorizontalAlignment.Left);
// Display items in the ListView control
foreach (DataRow row in dtable.Rows)
{
//TADY UZ SI NEVIM RADY
// Define the list items
ListViewItem lvi = new ListViewItem(row["mobile_phone"].ToString());
lvi.SubItems.Add(row["name"].ToString());
// Add the list items to the ListView
listViewUsers.Items.Add(lvi);
}