virrion
virrion

Reputation: 424

VirtualObjectListView - Binding data from Access Database

I spent hours (newbie) trying to load data from simple ms access database into VirtualObjectListView... I keep trying but no luck. I've tried to load same data into DataGridView and it worked. But I have little over 3 million rows in Access database to display...

VB.NET; please help guys.

Sample table: users (userid, username, password)

Thanks!

Upvotes: 1

Views: 256

Answers (1)

Grammarian
Grammarian

Reputation: 6882

Use FastDataListView instead of VirtualObjectListView.

Set DataSource and DataMember as you did for the DataGridView.

Upvotes: 2

Related Questions