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

推荐订阅源

AWS News Blog
AWS News Blog
Jina AI
Jina AI
量子位
V
V2EX
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
博客园 - 【当耐特】
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
L
LangChain Blog
博客园_首页
aimingoo的专栏
aimingoo的专栏
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Check Point Blog
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
博客园 - 聂微东
G
Google Developers Blog
C
CERT Recently Published Vulnerability Notes
K
Kaspersky official blog
NISL@THU
NISL@THU
Hacker News: Ask HN
Hacker News: Ask HN
腾讯CDC
Security Archives - TechRepublic
Security Archives - TechRepublic
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
Google DeepMind News
Google DeepMind News
The Register - Security
The Register - Security
H
Hacker News: Front Page
Webroot Blog
Webroot Blog
有赞技术团队
有赞技术团队
W
WeLiveSecurity
Martin Fowler
Martin Fowler
S
Security @ Cisco Blogs
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
WordPress大学
WordPress大学
雷峰网
雷峰网
PCI Perspectives
PCI Perspectives
月光博客
月光博客
SecWiki News
SecWiki News
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
Cyber Attacks, Cyber Crime and Cyber Security

博客园 - 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