partially visible by doing modulo...
nPage is the number that is passed to OnVScroll when the user pages
up
and
down, it can be anything you want, 5 is the typcial number of items
that
you
would scroll when the user pages up or down.
The list control will automatically show and hide its scrollbar
depending
on
the number of items in it, and it does it very cleanly. It sounds
like
that
is what you are trying to do. Is it not?
What the article was talking about was that if you disable the
scrollbar
of
a list control using the "No Scroll" option of the list control,
and
the
list control has enough items that would need scrolling you would
not
be
able to scroll these items. Which is true, for example if you have
a
listbox and you disable its scrollbar while there are enough items
to
scroll
up and down you can still scroll by using the keyboard or clicking
and
dragging inside the listbox. That is not the case with a list
control.
But
if you want to display a scrollbar when the user can scroll, and
hide
it
when there isn't enough items to scroll then it does that
automatically.
Now if you are doing this to get rid of the horizontal scrollbar
then
all
of
this changes, but there are ways around that, like making your last
column
be auto fit, so that it resizes itself in order to fit and not
cause a
horizontal scrollbar to show up.
AliR.
"Erakis" <Erakis@discussions.microsoft.com> wrote in message
news:29241AA6-AC8D-4D27-B7BC-22D0839677BC@microsoft.com...
I'm creating a list type control of my own, derived from CWnd.
I just wanted to confirm you that hiding scrollbar from a
CListCtrl
is
kind
of pain. Because we need to get and set rect of the list, cells
and
this
solution corrupt those information. Also we need to daw image on
specific
rows, custom headers drawing, transparent background, etc...
By the way, my own list is almost terminated and it is working. I
just
wanted to set up CORRECTLY my scrollbar and not doing it no
matter
how...
And what should be the value of nPage ?
Martin
"AliR (VC++ MVP)" wrote:
You would normally hide the scrollbar when the number of items
is
less
than
or equal to the number of visible items! What does that have to
do
with
anything.
I'm confused, your original message said that you want to setup
scrollbars
for your custom list control. Are you using a CListCtrl or are
you
creating
a list type control of your own?
The article you pointed me to shows how to cleanly remove
scrollbars
from
CListCtrl.
What does this solution does not work well with our project
really
mean?
What part of what does not work well?
m_iRowCount - 1 is not correct, m_iRowCount - NumVisible would
be
the