Hi all,
I'm struggling with a winforms problem considering scrolling.
I'm using a free table class xptable (you can find it on sourceforge),
which implements a table control.
It's all working quite easily and performant.
Now I'm having the following : column 1 of the table control should
allways be visible. When you scroll, you will allways see column 1,
the other columns will scroll normally.
Since I have all the code I rewrote the horizontal scrolling function
a bit, and made a clipped rectangle of my first column.
This works, BUT when I resize the window the control is redrawn.
How can I make this work in a clean way?
Some other thing that I tried, is to make 2 tables of it, the first
table only containing that one column, and no scrolling.
This works in the way that only the right table has horizontal and
vertical scrolling abilities. so for the horizontal part it is ok.
But, when the right table is scrolled down, the left should scroll
down too, and that doesn't work.
Can anybody help me with these scrolling issues, give good articles
about it or anything.
Thanks,
Greetz,
Koen