﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-zsww-成功源于创新！-最新评论</title><link>http://zsww.cnblogs.com/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Mon, 21 Mar 2005 02:58:00 GMT</pubDate><lastBuildDate>Mon, 21 Mar 2005 02:58:00 GMT</lastBuildDate><generator>cnblogs</generator><item><title>Re:水晶报表使用经验谈3--在报表中显示多个表的字段（通过表关联）</title><link>http://www.cnblogs.com/zsww/archive/2009/11/24/1075.html#1705520</link><dc:creator>andre0115</dc:creator><author>andre0115</author><pubDate>Tue, 24 Nov 2009 03:09:27 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2009/11/24/1075.html#1705520</guid><description><![CDATA[按照以上步骤操作
我用了一个联合查询集合赋给DataSet，但是绑定给报表对象后
rpt.SetDataSource(ds)
this.CrystalReportViewer1.ReportSource = rpt;
没有数据显示 单独运行sql语句是正确 很是奇怪！
请问估计是我代码有什么问题？谢谢 <br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">andre0115</a> 2009-11-24 11:09 <a href="http://www.cnblogs.com/zsww/archive/2009/11/24/1075.html#1705520#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2008/09/02/781.html#1306075</link><dc:creator>像蚊子的小猫</dc:creator><author>像蚊子的小猫</author><pubDate>Tue, 02 Sep 2008 09:59:56 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2008/09/02/781.html#1306075</guid><description><![CDATA[导出 DLL： 检测到错误 <br/>怎么回事呀？<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">像蚊子的小猫</a> 2008-09-02 17:59 <a href="http://www.cnblogs.com/zsww/archive/2008/09/02/781.html#1306075#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228673</link><dc:creator>7907</dc:creator><author>7907</author><pubDate>Tue, 17 Jun 2008 15:26:21 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228673</guid><description><![CDATA[<a href="http://www.51cto.com/art/200607/29265.htm" target="_new" rel="nofollow">http://www.51cto.com/art/200607/29265.htm</a><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">7907</a> 2008-06-17 23:26 <a href="http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228673#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228669</link><dc:creator>7907</dc:creator><author>7907</author><pubDate>Tue, 17 Jun 2008 15:23:32 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228669</guid><description><![CDATA[XFire提供了四种身份验证的方式，分别是http验证，JSR181,Handler验证，WS-Security。 <br><br>SOAP的原理告诉我们一个WS交互的流程是客户端发送请求－&gt;服务器接收请求－&gt;服务器发送数据-&gt;客户<br><br>端接收数据，handler可以让我们在这四个操作中之前进行编码，所以，我们的验证进行在客户端发送请<br><br>求和服务器接收请求的时候，因此，我们要写两个handler，然后把它们装配上就可以了。 <br><br>Handler验证方式如下： <br><br>主要参考的实例是XFIREdemo中的BOOK <br><br>服务器的代码如下 <br><br>package com.nstar.xfire.auth;<br><br>import org.codehaus.xfire.MessageContext;<br>import org.codehaus.xfire.XFireRuntimeException;<br>import org.codehaus.xfire.handler.AbstractHandler;<br>import org.jdom.Element;<br>import org.jdom.Namespace;<br><br>public class XfireAuthenticationHandler  extends AbstractHandler {<br> private static final String USERNAME = &quot;biansutao&quot;;<br> private static final String PASSWORD = &quot;12345678&quot;;<br> private static final String NS = &quot;<a href="http://xfire.codehaus.org/biansutao&quot;;" target="_new" rel="nofollow">http://xfire.codehaus.org/biansutao&quot;;</a> <br> <br> public void invoke(MessageContext ctx) throws Exception {<br>  // Check if header exists<br>  <br>  Element header = ctx.getInMessage().getHeader();<br>  if (header == null) {<br>   throw new XFireRuntimeException(&quot;Missing SOAP Header&quot;);<br>  }<br>  // Does it have version tag<br>  Element name = header.getChild(&quot;USERNAME&quot;,Namespace.getNamespace(NS));<br>  Element pass = header.getChild(&quot;PASSWORD&quot;,Namespace.getNamespace(NS));<br>  if(name.getValue().equals(USERNAME) &amp;&amp; pass.getValue().equals(PASSWORD)){<br>   System.out.println(&quot;验证通过&quot;);<br>  }<br>  else{<br>   System.out.println(&quot;验证未通过&quot;);<br>   throw new XFireRuntimeException(&quot;Authentication Failure&quot;);<br>  }<br>  ctx.setProperty(&quot;USERNAME&quot;, USERNAME);<br>  ctx.setProperty(&quot;PASSWORD&quot;, PASSWORD);<br> }<br>}<br><br>然后需要在services.xml中配置如下： <br><br>xml 代码<br><br>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br>&lt;beans xmlns=&quot;<a href="http://xfire.codehaus.org/config/1.0&quot;&gt;" target="_new" rel="nofollow">http://xfire.codehaus.org/config/1.0&quot;&gt;</a><br> &lt;service&gt;<br>  &lt;name&gt;HelloWordService&lt;/name&gt;<br>  &lt;serviceClass&gt;com.nstar.xfire.IHelloWordService&lt;/serviceClass&gt;<br>  &lt;implementationClass&gt;<br>   com.nstar.xfire.HelloWordServiceImpl<br>  &lt;/implementationClass&gt;<br>  &lt;style&gt;wrapped&lt;/style&gt;<br>  &lt;use&gt;literal&lt;/use&gt;<br>  &lt;scope&gt;application&lt;/scope&gt;<br>  &lt;inHandlers&gt;<br>   &lt;handler handlerClass=&quot;com.nstar.xfire.auth.XfireAuthenticationHandler&quot;&gt;&lt;/handler&gt;<br>     &lt;/inHandlers&gt;<br> &lt;/service&gt;<br>&lt;/beans&gt;<br><br><br>客户端代码<br><br>package com.nstar.xfire.client.auth;<br><br>import org.codehaus.xfire.MessageContext;<br>import org.codehaus.xfire.handler.AbstractHandler;<br>import org.jdom.Element;<br><br>public class ClientHeaderHandler extends AbstractHandler {<br> //用户验证<br> private static final String USERNAME = &quot;biansutao&quot;;<br> private static final String PASSWORD = &quot;12345678&quot;;<br> private static final String NS = &quot;<a href="http://xfire.codehaus.org/biansutao&quot;;" target="_new" rel="nofollow">http://xfire.codehaus.org/biansutao&quot;;</a><br> public void invoke(MessageContext ctx) throws Exception {<br>  Element header = ctx.getOutMessage().getOrCreateHeader();<br>  header.addContent(new Element(&quot;USERNAME&quot;,NS).addContent(USERNAME));<br>  header.addContent(new Element(&quot;PASSWORD&quot;,NS).addContent(PASSWORD));<br> }<br><br>}<br><br> <br><br>package com.nstar.xfire.client;<br><br>import java.util.List;<br>import java.lang.reflect.Proxy;<br>import java.net.MalformedURLException;<br>import java.util.ArrayList;<br><br>import org.codehaus.xfire.*;<br>import org.codehaus.xfire.client.Client;<br>import org.codehaus.xfire.client.XFireProxy;<br>import org.codehaus.xfire.client.XFireProxyFactory;<br>import org.codehaus.xfire.service.Service;<br>import org.codehaus.xfire.service.binding.ObjectServiceFactory;<br>import com.nstar.xfire.IHelloWordService;<br>import com.nstar.xfire.Student;<br>import com.nstar.xfire.client.auth.ClientHeaderHandler;<br><br>public class HelloWorldClient {<br><br> /**<br>  * @param args<br>  */<br> public static void main(String[] args) {<br>  Service serviceModel = new ObjectServiceFactory().create(IHelloWordService.class);<br>  XFireProxyFactory factory = new XFireProxyFactory(XFireFactory.newInstance().getXFire());<br>  String url = &quot;<a href="http://10.232.75.61:8090/Xfire/services/HelloWordService&quot;;" target="_new" rel="nofollow">http://10.232.75.61:8090/Xfire/services/HelloWordService&quot;;</a><br>  try {<br>   IHelloWordService service = (IHelloWordService) factory.create(serviceModel, url);<br>   <br>      XFireProxy proxy = (XFireProxy)Proxy.getInvocationHandler(service);<br>         Client client = proxy.getClient();<br>         client.addOutHandler(new ClientHeaderHandler());<br>   <br>   List list = new ArrayList();<br>   List list1 = new ArrayList();<br>   list.add(new String(&quot;测试&quot;));<br>   int age = service.getAge(&quot;边苏涛&quot;);<br>   String name = service.getName(1);<br>   Student s = service.getOneStudent(27);<br>   list1 = service.getStudent(list);<br>   System.out.println(&quot;边苏涛's age ==&quot;+age);<br>   System.out.println(&quot;学号为1的学生姓名 &quot;+name);<br>   System.out.println(&quot;age == &quot;+s.getAge()+&quot; name == &quot;+s.getName()+&quot; list content <br><br>&quot;+s.getList().get(0).toString());<br>   System.out.println(list1.size());<br>   for(int i=0;i&lt;list1.size();i++){<br>    System.out.println(list1.get(i).toString());<br>   }<br>  } catch (MalformedURLException e) {<br>   e.printStackTrace();<br>  }<br> }<br>}<br><br><br>。<br><br> <br><br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">7907</a> 2008-06-17 23:23 <a href="http://www.cnblogs.com/zsww/archive/2008/06/17/781.html#1228669#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2008/05/27/781.html#1211051</link><dc:creator>ddf</dc:creator><author>ddf</author><pubDate>Tue, 27 May 2008 14:42:21 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2008/05/27/781.html#1211051</guid><description><![CDATA[花了两天时间，终于把jasperreport与项目中使用的hibernate结合使用.最新版本的ireport支持HQL查询,可以在 ireport里面写HQL语句查询并设计好报表.需要注意的是把hibernate.cfg.xml包括进classpath!!(菜单options -&gt;classpath进行设置)给张图:<br><br><br><br><br>设计好报表之后编译成jasper文件,在servlet中调用,我们需要实现自己的hibernate datasource:<br><br>public class HibernateQueryResultDataSource implements JRDataSource {<br><br> private String[] fields;<br><br> private Iterator iterator;<br><br> private Object currentValue;<br><br> public HibernateQueryResultDataSource(List list, String[] fields) {<br>  this.fields = fields;<br>  this.iterator = list.iterator();<br> }<br><br> public Object getFieldValue(JRField field) throws JRException {<br>  Object value = null;<br>  int index = getFieldIndex(field.getName());<br>  if (index &gt; -1) {<br>   Object[] values = (Object[]) currentValue;<br>   value = values[index];<br>  }<br>  return value;<br> }<br><br> public boolean next() throws JRException {<br>  currentValue = iterator.hasNext() ? iterator.next() : null;<br>  return (currentValue != null);<br> }<br><br> private int getFieldIndex(String field) {<br>  int index = -1;<br>  for (int i = 0; i &lt; fields.length; i++) {<br>   if (fields[i].equals(field)) {<br>    index = i;<br>    break;<br>   }<br>  }<br>  return index;<br> }<br><br>}<br><br>此类构造函数需要两个参数,查询结果的list以及查询的所有属性名(这些属性名必须和报表界面的field名一致)<br><br>,使用方式如下:<br><br>1.导出pdf:<br><br>File reportFile = new File(getServletContext().getRealPath(<br>    &quot;/reports/&quot; + queryResult.getReportFileName() + &quot;.jasper&quot;));<br><br>  HibernateQueryResultDataSource dataSource = new HibernateQueryResultDataSource(<br>    queryResult.getList(parameters), queryResult.getFields());<br>  if (reportType.equals(&quot;pdf&quot;) || reportType.equals(&quot;&quot;)) {<br>   try {<br>    byte[] bytes = JasperRunManager.runReportToPdf(reportFile<br>      .getPath(), null, dataSource);<br>    response.setContentType(&quot;application/pdf&quot;);<br>    response.setContentLength(bytes.length);<br>    ServletOutputStream ouputStream = response.getOutputStream();<br>    ouputStream.write(bytes, 0, bytes.length);<br>    ouputStream.flush();<br>    ouputStream.close();<br><br>   } catch (Exception e) {<br>    e.printStackTrace();<br>   }<br>  } <br><br>2.导出excel,需要把poi-2.0-final-20040126.jar放进web的lib里:<br><br>try {<br><br>    JasperPrint print = JasperFillManager.fillReport(<br>      new FileInputStream(reportFile), null, dataSource);<br>    // JRXlsExporter t=null;<br>    JRXlsExporter jRXlsExporter = new JRXlsExporter();<br>    ByteArrayOutputStream xlsReport = new ByteArrayOutputStream();<br>    jRXlsExporter.setParameter(JRExporterParameter.JASPER_PRINT,<br>      print);<br>    jRXlsExporter.setParameter(JRExporterParameter.OUTPUT_STREAM,<br>      xlsReport);<br>    jRXlsExporter<br>      .setParameter(<br>        JRXlsExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS,<br>        Boolean.TRUE);<br>    jRXlsExporter.setParameter(<br>      JRXlsExporterParameter.IS_WHITE_PAGE_BACKGROUND,<br>      Boolean.TRUE);<br>    // jRXlsExporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME,ReportsConstants.bankDetailsHtml);<br><br>    // jRXlsExporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET,<br>    // Boolean.TRUE);<br><br>    jRXlsExporter.exportReport();<br>    byte[] bytes = xlsReport.toByteArray();<br><br>   <br>    response.setContentType(&quot;application/vnd.ms-excel&quot;);<br>    response.setContentLength(bytes.length);<br>    xlsReport.close();<br>    OutputStream ouputStream = response.getOutputStream();<br>    ouputStream.write(bytes, 0, bytes.length);<br>    ouputStream.flush();<br>    ouputStream.close();<br><br>   } catch (Exception e) {<br>    e.printStackTrace();<br>   }<br><br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">ddf</a> 2008-05-27 22:42 <a href="http://www.cnblogs.com/zsww/archive/2008/05/27/781.html#1211051#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2008/03/05/12894.html#1091869</link><dc:creator>moge</dc:creator><author>moge</author><pubDate>Wed, 05 Mar 2008 06:41:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2008/03/05/12894.html#1091869</guid><description><![CDATA[this.ReportViewer1.Format=“pdf“; <br>为什么我的控件上没有Format这个属性<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">moge</a> 2008-03-05 14:41 <a href="http://www.cnblogs.com/zsww/archive/2008/03/05/12894.html#1091869#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 很高兴来到这里 感觉这里还不错！</title><link>http://www.cnblogs.com/zsww/archive/2007/12/28/256.html#1017917</link><dc:creator>谢谢</dc:creator><author>谢谢</author><pubDate>Fri, 28 Dec 2007 01:30:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2007/12/28/256.html#1017917</guid><description><![CDATA[呵呵!!楼主的解释很详细,谢谢<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">谢谢</a> 2007-12-28 09:30 <a href="http://www.cnblogs.com/zsww/archive/2007/12/28/256.html#1017917#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2007/07/09/12894.html#810857</link><dc:creator>小小小程序员</dc:creator><author>小小小程序员</author><pubDate>Mon, 09 Jul 2007 02:51:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2007/07/09/12894.html#810857</guid><description><![CDATA[我想问问，我是否在报表查询字符中用“SELECT * FROM IN_INVVEND_TBL WHERE(@Strcondition)”来给它传条件，<br>如果不可以，当条件为1个以上怎样组合条件，难道只能用存储器来拼条件吗<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">小小小程序员</a> 2007-07-09 10:51 <a href="http://www.cnblogs.com/zsww/archive/2007/07/09/12894.html#810857#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2007/06/01/12894.html#768075</link><dc:creator>zangjn</dc:creator><author>zangjn</author><pubDate>Fri, 01 Jun 2007 10:25:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2007/06/01/12894.html#768075</guid><description><![CDATA[不知道还有没有人回答：<br>我发现如果报表取中文名字，打印js出错。还有一个问题请大家帮忙。<br>我做的是可以折叠的报表，直接在ie中输网址可以。但是用这个控件放到程序中<br>点击展开无效。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">zangjn</a> 2007-06-01 18:25 <a href="http://www.cnblogs.com/zsww/archive/2007/06/01/12894.html#768075#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2007/01/10/12894.html#617215</link><dc:creator>dennyhong</dc:creator><author>dennyhong</author><pubDate>Wed, 10 Jan 2007 14:40:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2007/01/10/12894.html#617215</guid><description><![CDATA[那为兄台，有这个控件吗？可否给小弟一份。在下感激不尽。。<br>msn:dennyhong1108@hotmail.com<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">dennyhong</a> 2007-01-10 22:40 <a href="http://www.cnblogs.com/zsww/archive/2007/01/10/12894.html#617215#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 微软发布SQL Server 2000 Reporting Services Service Pack 1</title><link>http://www.cnblogs.com/zsww/archive/2006/11/30/17960.html#577997</link><dc:creator>111111</dc:creator><author>111111</author><pubDate>Thu, 30 Nov 2006 09:07:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/11/30/17960.html#577997</guid><description><![CDATA[安装不了大多是没有装IIS的原因 可以试一下<br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">111111</a> 2006-11-30 17:07 <a href="http://www.cnblogs.com/zsww/archive/2006/11/30/17960.html#577997#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/11/09/12894.html#555188</link><dc:creator>Ivan[匿名]</dc:creator><author>Ivan[匿名]</author><pubDate>Thu, 09 Nov 2006 04:35:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/11/09/12894.html#555188</guid><description><![CDATA[我们的项目正要用到报表功能，你的这个很有启发性，但是我还有另外一个问题是我们用的是Sql Server 2005 的Reporting Server ,但是开发环境用VS 2003， 这样的话还能用吗？因为VS2003 中没有ReportViewer控件，我该安装什么插件或者怎样才能解决我的这个问题？<br>谢谢你！<br>请好心大侠回信：zsy_1205@hotmail.com<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">Ivan[匿名]</a> 2006-11-09 12:35 <a href="http://www.cnblogs.com/zsww/archive/2006/11/09/12894.html#555188#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/09/01/12894.html#491953</link><dc:creator>上上签</dc:creator><author>上上签</author><pubDate>Fri, 01 Sep 2006 01:43:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/09/01/12894.html#491953</guid><description><![CDATA[感谢分享，正在研究中，SQL2KSP3A的标准版我有，KEKE如果还没找到可以与我联系。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">上上签</a> 2006-09-01 09:43 <a href="http://www.cnblogs.com/zsww/archive/2006/09/01/12894.html#491953#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services  使用感受</title><link>http://www.cnblogs.com/zsww/archive/2006/08/24/6007.html#485457</link><dc:creator>找奔</dc:creator><author>找奔</author><pubDate>Thu, 24 Aug 2006 09:04:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/08/24/6007.html#485457</guid><description><![CDATA[数据库的名称和密码<br>我进报表数据库的时候是用window集成,<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">找奔</a> 2006-08-24 17:04 <a href="http://www.cnblogs.com/zsww/archive/2006/08/24/6007.html#485457#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/08/24/12894.html#485432</link><dc:creator>徐风碧树</dc:creator><author>徐风碧树</author><pubDate>Thu, 24 Aug 2006 08:40:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/08/24/12894.html#485432</guid><description><![CDATA[老兄的这篇文章写的非常清楚。多谢<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">徐风碧树</a> 2006-08-24 16:40 <a href="http://www.cnblogs.com/zsww/archive/2006/08/24/12894.html#485432#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈5--使用格式化编辑器</title><link>http://www.cnblogs.com/zsww/archive/2006/07/31/121111.html#463949</link><dc:creator>Cure</dc:creator><author>Cure</author><pubDate>Mon, 31 Jul 2006 05:13:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/07/31/121111.html#463949</guid><description><![CDATA[邀请楼主加入报表团队，不知可否？ :)<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">Cure</a> 2006-07-31 13:13 <a href="http://www.cnblogs.com/zsww/archive/2006/07/31/121111.html#463949#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services  使用感受</title><link>http://www.cnblogs.com/zsww/archive/2006/07/18/6007.html#453836</link><dc:creator>dianefang</dc:creator><author>dianefang</author><pubDate>Tue, 18 Jul 2006 06:33:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/07/18/6007.html#453836</guid><description><![CDATA[回楼上的，你在配置数据源的地方，写下访问数据库的名称和密码，并记住。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">dianefang</a> 2006-07-18 14:33 <a href="http://www.cnblogs.com/zsww/archive/2006/07/18/6007.html#453836#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2006/06/21/781.html#431433</link><dc:creator>hellp</dc:creator><author>hellp</author><pubDate>Wed, 21 Jun 2006 04:43:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/06/21/781.html#431433</guid><description><![CDATA[我的出现以下错误，那位兄弟帮帮忙了。急啊<br>Server Error in '/Eform' Application.<br>--------------------------------------------------------------------------------<br><br>Error in File D:\Eform\PurchaseCry\PurCryKin.rpt: Access to report file denied. Another program may be using it. <br>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <br><br>Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Error in File D:\Eform\PurchaseCry\PurCryKin.rpt: Access to report file denied. Another program may be using it.<br><br>Source Error: <br><br><br>Line 54: 			crExportOptions.ExportFormatType =ExportFormatType.PortableDocFormat ; <br>Line 55: <br>Line 56: 			oRpt.Export(); <br>Line 57: 			oRpt.Close();<br> <br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">hellp</a> 2006-06-21 12:43 <a href="http://www.cnblogs.com/zsww/archive/2006/06/21/781.html#431433#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/04/26/12894.html#385788</link><dc:creator>钢笔水</dc:creator><author>钢笔水</author><pubDate>Wed, 26 Apr 2006 09:21:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/04/26/12894.html#385788</guid><description><![CDATA[对于不用报表指定的参数来传参数,各位有什么好的意见吗?<br>(我想不用报表的参数,而是自己来写参数,让报表接收我传入的参数,来查询数据.只能用存储过程吗?)<br><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">钢笔水</a> 2006-04-26 17:21 <a href="http://www.cnblogs.com/zsww/archive/2006/04/26/12894.html#385788#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/04/12/12894.html#372962</link><dc:creator>???</dc:creator><author>???</author><pubDate>Wed, 12 Apr 2006 02:09:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/04/12/12894.html#372962</guid><description><![CDATA[第2步的ReportView.cs中的SetParameter方法在哪里定义的？<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">???</a> 2006-04-12 10:09 <a href="http://www.cnblogs.com/zsww/archive/2006/04/12/12894.html#372962#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>我这里是水晶报表华南的核心,有这方面疑问的可以给我有件!</title><link>http://www.cnblogs.com/zsww/archive/2006/03/20/890.html#354038</link><dc:creator>liuzheng</dc:creator><author>liuzheng</author><pubDate>Mon, 20 Mar 2006 06:56:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/03/20/890.html#354038</guid><description><![CDATA[我这里是水晶报表华南的核心,有这方面疑问的可以给我有件!tliuz@todaychina.com<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">liuzheng</a> 2006-03-20 14:56 <a href="http://www.cnblogs.com/zsww/archive/2006/03/20/890.html#354038#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services 困惑的解决  直接传递参数并用ReportViewer来呈现报表</title><link>http://www.cnblogs.com/zsww/archive/2006/03/07/12894.html#344576</link><dc:creator>冰點火燄</dc:creator><author>冰點火燄</author><pubDate>Tue, 07 Mar 2006 04:15:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/03/07/12894.html#344576</guid><description><![CDATA[@我爱程序<br>我也遇到相同的問題，就是SQL設計器中的SQL語句不可以使用表達式，<br>一種解決方式是使用存儲過程，將參數傳入，存儲過程生成動態SQL語句，<br>我用的是Oracle，可以使用Excute Immediate &quot;SQL&quot; 語句<br>但是由於我這裡使用存儲過程很不方便，希望能採用其它方式解決，現在還沒有好的辦法。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">冰點火燄</a> 2006-03-07 12:15 <a href="http://www.cnblogs.com/zsww/archive/2006/03/07/12894.html#344576#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services  使用感受</title><link>http://www.cnblogs.com/zsww/archive/2006/02/09/6007.html#327811</link><dc:creator>xxA</dc:creator><author>xxA</author><pubDate>Thu, 09 Feb 2006 08:52:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2006/02/09/6007.html#327811</guid><description><![CDATA[楼主，我在使用的时候出现个问题：制作，部署报表都可以，但在<a target="_new" href="http://localhost/reports里">http://localhost/reports里</a><br>查看报表时报：<br>登录失败。<br>登录失败: 未知的用户名或错误密码。 (异常来自 HRESULT:0x8007052E) <br>的错误．这是怎么回事．<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">xxA</a> 2006-02-09 16:52 <a href="http://www.cnblogs.com/zsww/archive/2006/02/09/6007.html#327811#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 水晶报表使用经验谈1－－建立水晶报表第一步及编译最易出现错误的解决方法及报表转换成pdf文档进行打印方法</title><link>http://www.cnblogs.com/zsww/archive/2005/12/06/781.html#291427</link><dc:creator>Andily</dc:creator><author>Andily</author><pubDate>Tue, 06 Dec 2005 00:21:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2005/12/06/781.html#291427</guid><description><![CDATA[請問，如何給導出報表指定位置。。急<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">Andily</a> 2005-12-06 08:21 <a href="http://www.cnblogs.com/zsww/archive/2005/12/06/781.html#291427#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: SQL Reporting Services  使用感受</title><link>http://www.cnblogs.com/zsww/archive/2005/12/02/6007.html#289052</link><dc:creator>xiaobai</dc:creator><author>xiaobai</author><pubDate>Fri, 02 Dec 2005 02:38:00 GMT</pubDate><guid>http://www.cnblogs.com/zsww/archive/2005/12/02/6007.html#289052</guid><description><![CDATA[MSDN上面两位老师的在线课程看过了吗。也指出在预览界面看到的报表和最终部署的报表有可能不一样。所以你在做报表的时候先指定完部署之后按F5直接看部署后的报表格式。这样才能解决问题。不知道现在出的SQL2005里面的BI有没有这方面的改进。我还没有搞到2005<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/zsww/" target="_blank">xiaobai</a> 2005-12-02 10:38 <a href="http://www.cnblogs.com/zsww/archive/2005/12/02/6007.html#289052#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>
