Mohsan
Mohsan

Reputation: 2509

Add Data to DataRepeater Control in winform

Visual Studio 2008 service pack 1 comes with Visual Basic Powerpack and has DataRepeatr control.

i want to know that how I can add data in this control. i have in memory data. the examples i found on net are about binding DataSet to DataRepeater by fetching data from database. i want to bind in memory data. how to do this.

Upvotes: 0

Views: 1882

Answers (1)

Mohsan
Mohsan

Reputation: 2509

by adding a new DataSet from Add New Item. Create new DataTable in DataSet.

Add items from DataTable to DataRepeater using DataSource Explorer.

fill the data table from code.. thats the whole process i did.

Upvotes: 1

Related Questions