Hallo,
Auf Basis des List&Labels Beispiels zu DataProviderCollection
verwenden wir in einem Label(Etiketten Projekt) eben diese DataProviderCollection
wie folgt:
DataSet ds1 = new DataSet();
DataSet ds2 = new DataSet();
ds1.Tables.Add("Hallo").Columns.Add("Feld",typeof(string));
ds1.Tables.Add("Hallo1").Columns.Add("Feld1", typeof(string));
ds2.Tables.Add("Hallo2").Columns.Add("Feld2", typeof(string));
DataProviderCollection dpc = new DataProviderCollection();
dpc.Add(new AdoDataProvider(ds2));
dpc.Add(new AdoDataProvider(ds1));
llengine.DataSource = dpc;
die Ausgabe im Designer entspricht dann:
Variable
Hallo2
Field2(string)
Das Ergebnis kommt irgendwie unerwartet.