Hallo Leute,
ich bin neu hier also mal ein freundliches Hallo an alle!
Ich habe auch gleich ein Problem mitgebracht:
void button4\_Click(object sender, EventArgs e)
{
DataTable dataTable = new DataTable();
DataColumn Product = new DataColumn();
Product.DataType = System.Type.GetType("System.String");
Product.ColumnName = "Product";
Product.Caption = "Product";
dataTable.Columns.Add(Product);
foreach (string Item in listBox2.Items)
{
DataRow dataRow;
dataRow = dataTable.NewRow();
dataRow["Product"] = Item;
dataTable.Rows.Add(dataRow);
}
}
Warum funktioniert hier das auslesen der Listbox nicht?
Weiss das einer?
Gruss,
slip1