In Feburary 2008 the VB Power packs team released version 3 of there VB Power Packs 2005. This version included a DataRepeater control.
The DataRepeater control allows you use standard windows controls to display your data in a scrollable container. The included documentation shows you how to bind the DataRepeater to a typed dataset. This article will show you how to bind to a datatable in code.
To start off with create a new windows forms application and drop a datarepeater on the form. In the datarepeater drop a picturebox (pbCategory) and a label (lblName).
In the...