ListView formatting problem

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I have a list view and when the number of items reaches the bottom of the
control, it starts to add another column of items and this is NOT what I
want. It's doing this:
-----------------------------------------------------------------
[item] [item]
[item] [item]
[item] [item]
[item]
[item]
[item]
------------------------------------------------------------------

I want it to do this: (the X's are a scrollbar) :)
-----------------------------------------------------------------
[item]
|X|
[item]
|X|
[item]
|X|
[item]
|X|
[item]
| |
[item]
| |
------------------------------------------------------------------


I've gone over the properties of the control and I can't find anything that
makes sense to change this behavior, anyone know?

Thanks,
Steve
 
OMG... it was right there! ;)
Thank you, sorry for the dumb question...


Norman Yuan said:
Look at ListView.View property.

Steve said:
I have a list view and when the number of items reaches the bottom of the
control, it starts to add another column of items and this is NOT what I
want. It's doing this:
-----------------------------------------------------------------
[item] [item]
[item] [item]
[item] [item]
[item]
[item]
[item]
------------------------------------------------------------------

I want it to do this: (the X's are a scrollbar) :)
-----------------------------------------------------------------
[item]
|X|
[item]
|X|
[item]
|X|
[item]
|X|
[item]
| |
[item]
| |
------------------------------------------------------------------


I've gone over the properties of the control and I can't find anything
that
makes sense to change this behavior, anyone know?

Thanks,
Steve
 
Back
Top