<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>zhnzzy的专栏</title><link>http://blog.csdn.net/zhnzzy/</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Thu, 11 Dec 2008 17:43:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>ha</dc:creator><title>水晶报表如何按照分组的详细目录自动分页！</title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx</link><pubDate>Thu, 11 Dec 2008 17:27:00 GMT</pubDate><guid>http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx</guid><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3499638.aspx</wfw:comment><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/11/3499638.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3499638.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3499638</trackback:ping><description> 最近写的程序中需要实现这样一个功能，一条查询有N条记录，每条记录下又有M条子记录，现在要在报表上打印出这样的格式，为N条记录打印N张报表，即每条父目录自动分为1页，发现插入两个组的时候不太好使，不能自动分页！后来发现水晶报表自带有这样的功能，在格式化节－》节专家－》选择组页眉－》勾选上“在后面页新建页”，这时报表会自动按你分组的字段分页，但是这时候在最后一页是会重复的，即有N+1页会出现，这时我们需要选中;格式化节－》节专家－》b报表页脚－》把“隐藏”和“抑制显示”打上勾，这时在运行程序，打开报表，你会发现最后一页不见了，只有N页了.&lt;img src ="http://blog.csdn.net/zhnzzy/aggbug/3499638.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ha</dc:creator><title>实用的SQL函数(用于将符合条件的某列所有记录合成一行） </title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx</link><pubDate>Mon, 01 Dec 2008 15:30:00 GMT</pubDate><guid>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx</guid><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3421000.aspx</wfw:comment><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3421000.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3421000.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3421000</trackback:ping><description>&lt;br /&gt;当表中有　Ａ，Ｂ两列　情况如下&lt;br /&gt;Ａ　Ｂ&lt;br /&gt;－－－－&lt;br /&gt;Ｑ　Ｗ&lt;br /&gt;Ｑ　Ｍ&lt;br /&gt;Ｑ　Ｓ&lt;br /&gt;即A列对应多个Ｂ列，现在要返回　Ａ列值为Ｑ的Ｂ列为一条记录中间用空格隔开．即W M S&lt;br /&gt;&lt;br /&gt;下面函数可以搞定 &lt;br /&gt;&lt;br /&gt;CREATE FUNCTION dbo.getBbyA&lt;br /&gt;(&lt;br /&gt;  @C varchar (50)&lt;br /&gt;)&lt;br /&gt;RETURNS varchar (100)&lt;br /&gt;AS&lt;br /&gt;BEGIN&lt;br /&gt; DECLARE  @CODE VARCHAR(100)&lt;br /&gt; set @CODE=''&lt;br /&gt; SELECT @CODE=@CODE+B+'  '  from table where A=@C&lt;br /&gt; RETURN   @CODE&lt;br /&gt;&lt;br /&gt;END&lt;br /&gt;&lt;br /&gt;&lt;img src ="http://blog.csdn.net/zhnzzy/aggbug/3421000.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>ha</dc:creator><title>Service部署到服务器后出现"The test form is only available for requests from the local machine"解决方法 </title><link>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx</link><pubDate>Mon, 01 Dec 2008 15:22:00 GMT</pubDate><guid>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx</guid><wfw:comment>http://blog.csdn.net/zhnzzy/comments/3420920.aspx</wfw:comment><comments>http://blog.csdn.net/zhnzzy/archive/2008/12/01/3420920.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/3420920.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3420920</trackback:ping><description>最近边上一新同事刚写service,部署起来以后出现上述问题,想想肯定也有很多人碰到类似问题,一起来解决掉吧!原因:NET Framework 1.1 定义了一个名为 HttpPostLocalhost 的新协议。默认情况下，这个新协议处于启用状态。该协议允许从与使用 HTTP POST 请求的 Web 服务位于同一计算机上的应用程序调用该服务。允许的前提条件是：POST URL 使用 http://localhost，而不是 http://hostname。这使得 Web 服务开发人员可以使用基于 HTML 的测试窗体，从 Web 服务所在的同一计算机调用该 Web 服务。当您尝试从远程计算机访问 Web 服务时，不会显示“调用”按钮。并且，您会收到以下错误信息：The test form is only available for requests from the local machine解决方法: 1.通过编辑 Web 服务所在的 vroot 的 Web.config &lt;img src ="http://blog.csdn.net/zhnzzy/aggbug/3420920.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>zhnzzy</dc:creator><title>欢迎访问我的sina博客!谢谢!http://blog.sina.com.cn/m/hanian</title><link>http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx</link><pubDate>Tue, 31 Oct 2006 14:27:00 GMT</pubDate><guid>http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx</guid><wfw:comment>http://blog.csdn.net/zhnzzy/comments/1358496.aspx</wfw:comment><comments>http://blog.csdn.net/zhnzzy/archive/2006/10/31/1358496.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/zhnzzy/comments/commentRss/1358496.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1358496</trackback:ping><description>blog at sina&lt;img src ="http://blog.csdn.net/zhnzzy/aggbug/1358496.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>