SBrown
|
| Posted: 06/24/2003, 6:05 AM |
|
Using CCS 2.1, ASP 3.0 w/ templates and Access 2000.
I am trying to get a single grid column that is too long to be broken in half and displayed side-by-side. I want to do this so that it is easier to read on screen and so that it will fit on a single page when printed.
Example. The 50 record grid column below should be broken and displayed side-by-side at the 25th record. I would prefer that the two columns are spaced apart with a hidden space. Can this be done?
------------------
Employee | Ext |
------------------
Emp 1 | 1 |
------------------
Emp 2 | 2 |
------------------
|
|
thru
-------------------
Emp 50 | 50 |
-------------------
|
|
|
 |
rrodgers
|
| Posted: 06/24/2003, 7:52 AM |
|
This will help you do the multi column display http://www.gotocode.com/art.asp?art_id=258&
It will display
Emp 1|Emp 2
Emp 3|Emp 4
...
Emp 49| Emp 50
If you want Newspaper columns
Emp 1|Emp 26
Emp 2|Emp 27
...
Emp 25| emp 50
It would require a bit of tweaking maybe some custom code.
But I used the example from the first link to quickly setup something for displaying some ads at this site.
www.hanfordflames.org
rob
|
|
|
 |
|