Link to home
Start Free TrialLog in
Avatar of Mayank S
Mayank SFlag for India

asked on

Listview - pagination

Hi folks,

A quick question just to confirm - does the ListView control in Windows forms support pagination? Is the size of a column of a listview not limited to 260 characters?

So if I have a large amount of data to display where some columns might be having more than 260 characters, should I not use a Datagrid with pagination?

Thanks,
Mayank.
Avatar of dstanley9
dstanley9

What 260-char limit are you referring to?  

The ListView does not support paginiation out-of-the-box.  A DataGrid (or GridView) may work better for you.
Avatar of Mayank S

ASKER

>> What 260-char limit are you referring to?

The maximum number of characters you can display in a list-view column.
ASKER CERTIFIED SOLUTION
Avatar of dstanley9
dstanley9

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
>> The Windows DataGrid does not support paging out-of-the-box either

Ah, yes. You are right. I'll see the article, thanks.
Thanks.