[转]Formatting the detail section to display multiple columns (水晶报表 rpt 一页多列)
本文转自:http://www.bofocus.com/formatting-the-detail-section-to-display-multiple-columns/
Format the details section to display in multiple columns:
1. Right-click on the Details section, to open the Section Expert dialog box.

2. On the Sections list, click the details section.
3.On the Common tab, select Format with multiple columns check box. A new tab called Layout appears.

4. On the Layout tab, specify the formatting for the columns: Enter the width of the column in the Width box (you can set the height by dragging the section borders in the Design view of the report).
5. Enter the space between labels going across the page in the Horizontal gap checkbox.
6. Enter the space between labels going down the page in the Vertical gap box.
7. Select the printing direction, Across then Down or Down then Across.

If the report is grouped, and you would like the group headers and footers to display in multiple column format as well, select the Format groups with multiple columns checkbox and click ok.
Final Results:

[转]Formatting the detail section to display multiple columns (水晶报表 rpt 一页多列)的更多相关文章
- GreenDAO - primary key on multiple columns
		
转:http://stackoverflow.com/questions/15250609/greendao-primary-key-on-multiple-columns Does GreenDAO ...
 - easyui datagrid checkbox multiple columns have been done do
		
lengku1987 2013-01-06 22:27:47 Sponsored Links easyui datagrid checkbox multiple columns have ...
 - CSS Multiple Columns
		
CSS Multiple Columns CSS layout column-count column-gap column-rule-style column-rule-width column-r ...
 - ActiveReport资料
		
1. ActiveReports for .NET 2 Online | ActiveReports for .NET 3 Online 2.GroupHeader块 ①GroupHeader块为每个 ...
 - How to: Specify a Display Member (for a Lookup Editor, Detail Form Caption, etc.)如何:指定显示成员(用于查找编辑器、详细信息表单标题等)
		
Each business object used in an XAF application should have a default property. The default property ...
 - How to Choose the Best Way to Pass Multiple Models in ASP.NET MVC
		
Snesh Prajapati, 8 Dec 2014 http://www.codeproject.com/Articles/717941/How-to-Choose-the-Best-Way-to ...
 - Enlisting multiple 1-phase aware participants in the same transaction
		
In some cases it may be necessary to enlist participants that aren't two-phase commit aware into a t ...
 - abap alv  multiple header using write
		
A standard SAP ALV list report will show only one line header, but there will be a requirement somed ...
 - display:table表格合并单元格
		
直接上代码: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEn ...
 
随机推荐
- 为什么要把页面放在 WEB-INF 路径下?
			
1.基于不同的功能 JSP 被放置在不同的目录下 这种方法的问题是这些页面文件容易被偷看到源代码,或被直接调用.某些场合下这可能不是个大问题,可是在特定情形中却可能构成安全隐患.用户可以绕过Strut ...
 - Field 'CID' doesn't have a default value
			
解决:在数据库客户端navicat中设计表勾选自动递增
 - AndroidStudio设置“自动导入包”
			
setting –-> Editor –-> General –-> Auto Inport 勾选这两项 单击 Apply –-> ok
 - HDOJ-1004(map)
			
Let the Balloon Rise Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Oth ...
 - SpannableStringBuilder 用法浅析以及仿陌陌表情
			
SpannableStringBuilder 官方文档解释:这个类可以使文本的内容和标记都可以改变.当我们要为TextView或者Edittext里面的文字加入加入一些效果,如下划线,颜色标 识,超 ...
 - JAVA基础--JAVA 集合框架(泛型、file类)16
			
一.集合总结 集合:Collection体系.Map体系. Collection体系:单列集合的共性操作规则. List:列表,可以重复,有下标,拥有特有的迭代器ListIterator. Array ...
 - Cookie和Session(3)
			
关于Cookie和Session Cookie和Session都为了用来保存状态信息,都是保存客户端状态的机制,它们都是为了解决HTTP无状态的问题而所做的努力. 1)cookie 是一种发送到客户浏 ...
 - 洛谷 - SP3871 GCDEX - GCD Extreme - 莫比乌斯反演
			
易得 $\sum\limits_{g=1}^{n} g \sum\limits_{k=1}^{n} \mu(k) \lfloor\frac{n}{gk}\rfloor \lfloor\frac{n}{ ...
 - Lightoj1000【简单A+B】
			
balababalabalabala! #include<stdio.h> #include<queue> #include<string.h> #include& ...
 - Ruby测试小代码[计算50以内的素数]
			
算法思想 判断某一个数,能不能被比他平方根小的素数整除. 首先看看代码 $arr = [] $arr[0] = 2 def add_prime(n) 3.step(n,2){|num| $arr &l ...