combit List & Label 30 - .NET Help
combit.Reporting.DataProviders Namespace / DataProviderCollection Class / Add Method
The provider to add.
Example


Add Method (DataProviderCollection)
Adds a new data provider to the collection.
Syntax
'Declaration
 
Public Sub Add( _
   ByVal item As IDataProvider _
) 
 

Parameters

item
The provider to add.
Example
DataSet ds1 = CreateDataSet();
DataSet ds2 = CreateOtherDataSet();

// combine the data from ds1 and ds2 into one datasource
DataProviderCollection providerCollection = new DataProviderCollection();
providerCollection.Add(new AdoDataProvider(ds1));
providerCollection.Add(new AdoDataProvider(ds2));
LL.DataSource = providerCollection;
LL.Design();
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also