How to show out three rows from the same databand On A4?
How to show out three rows from the same databand On A4?
Post by DoraHuang » Tue Mar 13, 2018 4:13 am
1. How to present a report from one DataBand to show out three info?
My questions like the picture:
it is A4 page And I want three row on the page.
The PageHead,Footer all the same And Databand at three row also the same ,only info not the same.
How Can I do?
I am waiting your help.
Thank you very much.
- Attachments
-
- picture.png (7.39 KiB) Viewed 514 times
Re: How to show out three rows from the same databand On A4?
Post by Alex K. » Wed Mar 14, 2018 2:10 pm
If you need to show each row on a separate page - you can use the NewPageAfter/Before property for the DataBand.
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
Thank you.
Re: How to show out three rows from the same databand On A4?
Post by DoraHuang » Wed Aug 29, 2018 8:08 am
Sorry There is a Stupid question
How do I set it up?
"
Also, you can use the following code (in BeforePrint event of the DataBand) to set a new page depends on data count on one page:
if (Line == 3)
Engine.NewPage()
"
Thank you.
- Lech Kulikowski
- Posts: 1342
- Joined: Tue Mar 20, 2018 5:34 am
Re: How to show out three rows from the same databand On A4?
Post by Lech Kulikowski » Thu Aug 30, 2018 6:56 pm
Open events tab and write code in the necessary event.
Thank you.
- Attachments
-
- Capture.PNG (39.95 KiB) Viewed 415 times
Re: How to show out three rows from the same databand On A4?
Post by DoraHuang » Fri Aug 31, 2018 1:45 am
Lech Kulikowski wrote: ↑Thu Aug 30, 2018 6:56 pmHello,
Open events tab and write code in the necessary event.
Thank you.
Thank You~~
- Lech Kulikowski
- Posts: 1342
- Joined: Tue Mar 20, 2018 5:34 am
Re: How to show out three rows from the same databand On A4?
Post by Lech Kulikowski » Fri Aug 31, 2018 5:35 am
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.
How to show out three rows from the same databand On A4?的更多相关文章
- Winform 导入导出方法
导出时:引用 using Excel = Microsoft.Office.Interop.Excel; #region 读取excel //打开方法 public DataTable Excelto ...
- SQL Server Reporting Services (SSRS): Reporting Services in SQL Server 2012 (codename "Denali") will support XLSX, DOCX formats. Bye bye 65536 rows limit in XLS files ;)
当SSRS报表的时候,若相应EXCEL是2003以下,在行数超过65536的时候报表会报错 "Microsoft.ReportingServices.ReportProcessing.Han ...
- 文本域的宽度和高度应该用cols和rows来控制,还是 用width和height来控制
文本域宽度如果用cols来控制,缩放网页的时候文本域的宽度不会自动变化 用width来表示就会跟着网页缩放而缩放 看到下面一段文字: 对于内容至上的网页,在禁用CSS的情况下,HTML内容要做到易于阅 ...
- Oracle开发之窗口函数 rows between unbounded preceding and current row
目录=========================================1.窗口函数简介2.窗口函数示例-全统计3.窗口函数进阶-滚动统计(累积/均值)4.窗口函数进阶-根据时间范围统计 ...
- Excel: Switch (transpose) columns and rows
链接:https://support.office.com/en-in/article/Switch-transpose-columns-and-rows-ed1215f5-59af-47e6-953 ...
- HTML5 webSQL 中查询结果集 result.rows.item 的用法
加入查询回调函数如下: function(tx,result){ var len = result.rows.length; var recordset = result.rows.item; ){ ...
- SQL Server窗口函数:ROWS与RANGE
几乎每次我展示SQL Server里的窗口时,人们都非常有兴趣知道,当你定义你的窗口(指定的一组行)时,ROWS与RANGE选项之间的区别.因此在今天的文章里我想给你展示下这些选项的区别,对于你的分析 ...
- csharp:Compare two DataTables to rows in one but not the other
/// <summary> /// 账面数据 Accounting /// </summary> /// <returns></returns> Dat ...
- Hive get table rows count batch
项目中需要比对两种方法计算生成的数据情况,需要做两件事情,比对生成的中间表的行数是否相同,比对最后一张表的数据是否一致. 在获取表的数据量是一条一条地使用select count(*) from ta ...
随机推荐
- SQL server 查看什么语句在使用临时表
SQL server 查询那些语句在使用临时表 最近在日常的性能测试工作中发现,数据库端的IO读写比较大,有规律的2-8M的波动,数据库的版本为 SQL server 2008 sp3. 这些IO操作 ...
- (转载)Solr4.x在Tomcat下的部署
Step1 下载安装包: 下载最新版本安装包 点击此处下载Tomcat 点击此处下载Solr Step2 解压: 解压Tomcat和Solr Step3 拷贝War包: 拷贝\solr-4.x\ ...
- django的orm操作优化
django的orm操作优化 models.py from django.db import models class Author(models.Model): name = models.Char ...
- ADC(简易的DMA传输)的认识
ADC(简易的DMA传输)的认识 首先看到是ADC的特性 1.ADC的12位分辨率.不能直接测量负电压,然后是最小量程化单位是LSB=Vref+/212 2.单次和转换模式的使用 3. 从通道0到通道 ...
- 攻防世界--maze
测试文件下载:https://adworld.xctf.org.cn/media/task/attachments/fa4c78d25eea4081864918803996e615 1.准备 获得信息 ...
- 剑指offer学习--初级c++面试题
定义一个空的类型,里面没有任何成员函数和成员变量,对该类型求sizeof,得到的结果是多少? 答案是1.空类型中的实例中不包含任何信息,本来求sizeof应该是0,但是当我们声明该类型的实例的时候,他 ...
- C#学习大纲
一.C#: 1.进制转换 2.vs界面内容 熟悉软件 3.数据类型 :引用类型 值类型 4.变量 (存储数据)一个变量存储一个数据 5.类型转换 6.运算符:算数运 ...
- maven项目引入spring boot依赖之后filter不生效的问题
maven的filtering没有起作用,没有把占位符给替换掉.(大家可以执行mvn clean package,看看打包后的jar里面的application.properties文件,是否有替换占 ...
- linux ---JDK的安装与配置--两种方式
linux下的JDK的安装与配置:JDK的安装有两种方式: tar包和rpm安装1.tar包安装: 下载地址:http://www.oracle.com/technetwork/java/javase ...
- Machine Learning:机器学习算法
原文链接:https://riboseyim.github.io/2018/02/10/Machine-Learning-Algorithms/ 摘要 机器学习算法分类:监督学习.半监督学习.无监督学 ...