惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Security Affairs
S
Schneier on Security
T
Tenable Blog
G
GRAHAM CLULEY
Latest news
Latest news
D
Darknet – Hacking Tools, Hacker News & Cyber Security
A
Arctic Wolf
I
Intezer
Cyberwarzone
Cyberwarzone
T
The Exploit Database - CXSecurity.com
T
Tailwind CSS Blog
K
Kaspersky official blog
Blog — PlanetScale
Blog — PlanetScale
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Threat Research - Cisco Blogs
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
博客园 - 叶小钗
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Commits to openclaw:main
Recent Commits to openclaw:main
P
Palo Alto Networks Blog
WordPress大学
WordPress大学
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
The Cloudflare Blog
Help Net Security
Help Net Security
罗磊的独立博客
博客园 - 聂微东
Jina AI
Jina AI
Project Zero
Project Zero
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LINUX DO - 最新话题
V
V2EX
人人都是产品经理
人人都是产品经理
美团技术团队
博客园 - 【当耐特】
Spread Privacy
Spread Privacy
J
Java Code Geeks
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Security Latest
Security Latest
The Last Watchdog
The Last Watchdog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
S
Securelist
Forbes - Security
Forbes - Security
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
P
Privacy International News Feed
宝玉的分享
宝玉的分享
C
CERT Recently Published Vulnerability Notes

博客园 - antony.net

移动版网页自动缩放问题 2011年国内五款值得关注网店系统 Enterprise Architect 7 入门教程大全 Enterprise Architect 业务过程建模 不同浏览器处理后退的一些异同 - antony.net - 博客园 23个.NET开源项目 mysql 存储过程 游标 js代码库 table css 固定表头 - antony.net Hash Tables in Javascript 在非UI线程中改变UI控件属性的通用方法 RSClientPrint打印 统计sql语句 文档格式批量转换(doc,txt,pdf等) 了解HTTP Headers的方方面面 XmlSerializer 常见问题疑难解答 webservices Build a Custom RadioButton Cell and Column for the DataGridView Control .NET 2.0 - WinForm Control - DataGridView 编程36计(二)
水晶报表 - antony.net - 博客园
antony.net · 2009-01-11 · via 博客园 - antony.net

怎么样在一个页面里显示多个报表 而且不分页

R1201301   rptSonekiList   =   new   R1201301();  
  rptSonekiList.SetDataSource(   ds.Tables["authors_1"]   );  
   
  Sections   crSections   =   rptSonekiList.ReportDefinition.Sections   ;  
   
  for   (int   i   =0   ;   i   <   crSections.Count;   i++)  
  {  
  ReportObjects   objects   =   crSections[i].ReportObjects;    
  for   (int   j=0;   j   <   objects.Count;   j++)  
  {  
  if   (   objects[j].Kind   ==   ReportObjectKind.SubreportObject   )  
  {  
  SubreportObject   crSubreportObject   =   (SubreportObject)   objects[j];  
   
  //open   the   subreport   object  
  ReportDocument   crSubreportDocument   =   crSubreportObject.OpenSubreport(crSubreportObject.SubreportName);  
   
  //set   the   database   and   tables   objects   to   work   with   the   subreport  
  if   (crSubreportObject.Name   =="Subreport1")  
  {  
  crSubreportDocument.SetDataSource(   ds.Tables[   "outKin"   ]   );  
  }  
  //crDatabase.Tables  
  }  
  }  
  }  
  我用这个循环邦定子报表,不知道你那个行不行   

http://topic.csdn.net/t/20030923/16/2291453.html

http://blog.csdn.net/haibodotnet/category/13325.aspx?PageNumber=2