chiuchimuN
Programmer
I need a grid that keeps the first three columns of data fixed while horizontally scrolling like the flexgrid "fixed column method". But I also need to resize the columns if records don't fit in cell like the listview allows. I can't bind the control to the records because of the way its been rearranged.
Original Records in table
ID Lname Fname Date Type
1 Sander Frank 1/3/01 A
1 Sander Frank 1/7/01 E
3 Ricard Greg 1/3/01 A
3 Ricard Greg 1/30/01 A
1 Sander Frank 2/8/01 M
3 Ricard Greg 2/1/01 A
etc.....
Data on form looks like:
ID Lname Fname Jan -01 Feb -01 Mar -01 ... Jan -02
1 Sande Frank 1;3 2;
3 Ricard Greg 3;30;.. 1;
etc...
I want to keep the ID,Lname,Fname visible as user scrolls sideways there the dates. but also let columns be resized as the user wants to show more data or to keep view compact.
Alternatively, is there a way to link two listviews so they scroll horizantally together?
Original Records in table
ID Lname Fname Date Type
1 Sander Frank 1/3/01 A
1 Sander Frank 1/7/01 E
3 Ricard Greg 1/3/01 A
3 Ricard Greg 1/30/01 A
1 Sander Frank 2/8/01 M
3 Ricard Greg 2/1/01 A
etc.....
Data on form looks like:
ID Lname Fname Jan -01 Feb -01 Mar -01 ... Jan -02
1 Sande Frank 1;3 2;
3 Ricard Greg 3;30;.. 1;
etc...
I want to keep the ID,Lname,Fname visible as user scrolls sideways there the dates. but also let columns be resized as the user wants to show more data or to keep view compact.
Alternatively, is there a way to link two listviews so they scroll horizantally together?