Reputation: 424
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
Reputation: 6882
Use FastDataListView
instead of VirtualObjectListView
.
Set DataSource
and DataMember
as you did for the DataGridView.
Upvotes: 2