<?xml version="1.0" encoding="gb2312"?>

<!-- RSS generated by oioj.net on 4/16/2004 ; 感谢LeXRus提供 RSS 2.0 文档; 此文件可自由使用，但请保留此行信息 --> 
<!-- Source download URL: http://blogger.org.cn/blog/rss2.asp       -->
<rss version="2.0">

<channel>
<title>web报表解密</title>
<link>http://blogger.org.cn/blog/blog.asp?name=tomatoguy</link>
<description>西红柿小子的博客</description>
<copyright>blogger.org.cn</copyright>
<generator>W3CHINA Blog</generator>
<webMaster>webmaster@blogger.org.cn</webMaster>
<item>
<title><![CDATA[JAVA教程之Java编程规则（1）]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=34388</link>
<author>tomatoguy</author>
<pubDate>2008/4/25 15:45:02</pubDate>
<description><![CDATA[
<P>(1) 类名首字母应该大写。字段、方法以及对象（句柄）的首字母应小写。对于所有标识符，其中包含的所有单词都应紧靠在一起，而且大写中间单词的首字母。例如：<SPAN style="DISPLAY: none"> o1&lt;_fI </SPAN>&nbsp;<BR>ThisIsAClassName<SPAN style="DISPLAY: none"> R+Y4| </SPAN>&nbsp;<BR>thisIsMethodOrFieldName<SPAN style="DISPLAY: none"> HeG)/W?r </SPAN>&nbsp;<BR>若在定义中出现了常数初始化字符，则大写static final基本类型标识符中的所有字母。这样便可标志出它们属于编译期的常数。<SPAN style="DISPLAY: none"> g H G </SPAN>&nbsp;<BR>Java包（Package）属于一种特殊情况：它们全都是小写字母，即便中间的单词亦是如此。对于域名扩展名称，如com，org，net或者edu等，全部都应小写（这也是Java 1.1和Java 1.2的区别之一）。 </P>
<P>(2) 为了常规用途而创建一个类时，请采取“经典形式”，并包含对下述元素的定义：</P>
<P>equals()<SPAN style="DISPLAY: none"> H=\3Jj(4 </SPAN>&nbsp;<BR>hashCode()<SPAN style="DISPLAY: none"> Ovj^IjG-` </SPAN>&nbsp;<BR>toString()<SPAN style="DISPLAY: none"> -UD\;D?$ </SPAN>&nbsp;<BR>clone()（implement Cloneable）<SPAN style="DISPLAY: none"> #cCL.p"] </SPAN>&nbsp;<BR>implement Serializable</P>
<P>(3) 对于自己创建的每一个类，都考虑置入一个main()，其中包含了用于测试那个类的代码。为使用一个项目中的类，我们没必要删除测试代码。若进行了任何形式的改动，可方便地返回测试。这些代码也可作为如何使用类的一个示例使用。</P>
<P>(4) 应将方法设计成简要的、功能性单元，用它描述和实现一个不连续的类接口部分。理想情况下，方法应简明扼要。若长度很大，可考虑通过某种方式将其分割成较短的几个方法。这样做也便于类内代码的重复使用（有些时候，方法必须非常大，但它们仍应只做同样的一件事情）。</P>
<P>(5) 设计一个类时，请设身处地为客户程序员考虑一下（类的使用方法应该是非常明确的）。然后，再设身处地为管理代码的人考虑一下（预计有可能进行哪些形式的修改，想想用什么方法可把它们变得更简单）。<SPAN style="DISPLAY: none"> $]/Zxd </SPAN>&nbsp;<BR>(6) 使类尽可能短小精悍，而且只解决一个特定的问题。下面是对类设计的一些建议：<SPAN style="DISPLAY: none"> 7Ddaf&gt;  </SPAN>&nbsp;<BR>■一个复杂的开关语句：考虑采用“多形”机制<SPAN style="DISPLAY: none"> (bh95X </SPAN>&nbsp;<BR>■数量众多的方法涉及到类型差别极大的操作：考虑用几个类来分别实现<SPAN style="DISPLAY: none"> ]| +&lt;P- </SPAN>&nbsp;<BR>■许多成员变量在特征上有很大的差别：考虑使用几个类</P>
<P>(7) 让一切东西都尽可能地“私有”——private。可使库的某一部分“公共化”（一个方法、类或者一个字段等等），就永远不能把它拿出。若强行拿出，就可能破坏其他人现有的代码，使他们不得不重新编写和设计。若只公布自己必须公布的，就可放心大胆地改变其他任何东西。在多线程环境中，隐私是特别重要的一个因素——只有private字段才能在非同步使用的情况下受到保护。</P>
<P>(8) 谨惕“巨大对象综合症”。对一些习惯于顺序编程思维、且初涉OOP领域的新手，往往喜欢先写一个顺序执行的程序，再把它嵌入一个或两个巨大的对象里。根据编程原理，对象表达的应该是应用程序的概念，而非应用程序本身。</P>
<P>(9) 若不得已进行一些不太雅观的编程，至少应该把那些代码置于一个类的内部。</P>
<P>(10) 任何时候只要发现类与类之间结合得非常紧密，就需要考虑是否采用内部类，从而改善编码及维护工作（参见第14章14.1.2小节的“用内部类改进代码”）。</P>
<P>(11) 尽可能细致地加上注释，并用javadoc注释文档语法生成自己的程序文档。</P>
<P>(12) 避免使用“魔术数字”，这些数字很难与代码很好地配合。如以后需要修改它，无疑会成为一场噩梦，因为根本不知道“100”到底是指“数组大小”还是“其他全然不同的东西”。所以，我们应创建一个常数，并为其使用具有说服力的描述性名称，并在整个程序中都采用常数标识符。这样可使程序更易理解以及更易维护。</P><FONT size=2><FONT face=Arial>
<P>(13) 涉及构建器和异常的时候，通常希望重新丢弃在构建器中捕获的任何异常——如果它造成了那个对象的创建失败。这样一来，调用者就不会以为那个对象已正确地创建，从而盲目地继续。</P>
<P>(14) 当客户程序员用完对象以后，若你的类要求进行任何清除工作，可考虑将清除代码置于一个良好定义的方法里，采用类似于cleanup()这样的名字，明确表明自己的用途。除此以外，可在类内放置一个boolean（布尔）标记，指出对象是否已被清除。在类的finalize()方法里，请确定对象已被清除，并已丢弃了从RuntimeException继承的一个类（如果还没有的话），从而指出一个编程错误。在采取象这样的方案之前，请确定finalize()能够在自己的系统中工作（可能需要调用System.runFinalizersOnExit(true)，从而确保这一行为）。</P>
<P>(15) 在一个特定的作用域内，若一个对象必须清除（非由垃圾收集机制处理），请采用下述方法：初始化对象；若成功，则立即进入一个含有finally从句的try块，开始清除工作。</P>
<P>&nbsp;</P>
<P>转自：<A href="http://www.eworkday.cn/tech.do?id=1018&amp;m=info">　JAVA教程之Java变成规则（1）</A></P></FONT></FONT>]]></description>
</item><item>
<title><![CDATA[快逸4.0Free版新增填报功能]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=28128</link>
<author>tomatoguy</author>
<pubDate>2007/9/17 13:48:50</pubDate>
<description><![CDATA[
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT color=#ff8000 size=2><STRONG>9月14日</STRONG></FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>上传最新的快逸报表4.0 免费版的试用版。</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>该版本<FONT color=#ff0000>新增</FONT>（1）<STRONG>填报功能</STRONG>，提供对行式报表（二维表，无法横向扩展）的填报支持，相关教程我们将陆续推出；</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;（2）<STRONG>数据集可拖拽</STRONG>，省去了表达式的输入；</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; （3）授权有效至2008年3月10日。</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; （4）下载地址：<A href="http://www.quiee.com.cn/trail/free.htm">http://www.quiee.com.cn/trail/free.htm</A>。</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT color=#ff8000 size=2><STRONG>9月10日</STRONG></FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>最新整理的快逸报表4.0入门级基础教程已经更新完毕，<A href="http://www.quiee.com.cn/knowledge/tech/tech_index.htm">http://www.quiee.com.cn/knowledge/tech/tech_index.htm</A>。<BR><BR>这个教程是从最基本的概念讲起，主格、扩展，手把手教你二维报表、分组报表、交叉报表的制作。</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>每一节内容后，我们都附有简单的练习，可供你复习、体会。</FONT></P>
<P style="MARGIN-LEFT: 20px; MARGIN-RIGHT: 20px"><FONT size=2>非常适合初次接触、使用报表工具的爱好者。</FONT></P>
<P><FONT size=2></FONT>&nbsp;</P>]]></description>
</item><item>
<title><![CDATA[5、快逸网站大改版]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27788</link>
<author>tomatoguy</author>
<pubDate>2007/9/1 20:45:44</pubDate>
<description><![CDATA[<DIV class=date>&nbsp;</DIV>
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<DIV class=cnt>
<DIV class=rightmenu>
<DIV>快逸网站（<A href="http://www.quiee.com.cn">http://www.quiee.com.cn</A>）大改版，欢迎大家上去看看。</DIV></DIV>
<DIV class=rightbox style="OVERFLOW: hidden">
<P>新版的网站增加了很多内容：</P>
<P>（1）在线演示系统。我们部署了一个Tomcat下的例子，点击链接就能直接进去，浏览我们制作好的报表；</P>
<P>（2）flash演示：我们做了一些的flash，看看用户的反应如何，如果好，后续我们会挂更多的内容上去；</P>
<P>（3）实例教程：我的博客上贴的一些报表制作文档，都整理出来，挂在上面了。后面马上要推一个快逸报表的扫盲教程，力图让所有接触快逸报表的用户能快速掌握制表的基本概念。</P>
<P>（4）产品有关的文档也做了调整。</P>来自：<A href="http://blog.csdn.net/for_report/archive/2007/08/09/1733781.aspx"></A><A href="http://blog.csdn.net/for_report/archive/2007/08/09/1733781.aspx">http://blog.csdn.net/for_report/archive/2007/08/09/1733781.aspx</A>。</DIV></DIV></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[刘翔世锦赛首次夺魁 中国田径8年收获第一金]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27787</link>
<author>tomatoguy</author>
<pubDate>2007/9/1 20:45:44</pubDate>
<description><![CDATA[<DIV id=endText>
<P class=endSummary>　　在引人瞩目的男子110米栏<NOBR oncontextmenu="return false;" onmousemove=kwM(2); id=key2 onmouseover="kwE(event,2, this);" style="COLOR: #6600ff; BORDER-BOTTOM: 0px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">决赛</NOBR>中，中国飞人刘翔以12秒95的成绩获得冠军，这不仅是他第一次获得世锦赛的冠军，也是自1999年塞维利亚世锦赛后，中国田径队获得的第一枚金牌。 </P>
<P style="TEXT-INDENT: 2em">网易<NOBR oncontextmenu="return false;" onmousemove=kwM(0); id=key0 onmouseover="kwE(event,0, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">体育</NOBR>8月31日讯：第11届世界田径锦标赛今天继续在日本大阪进行。在引人瞩目的男子110米栏决赛中， <STRONG>中国飞人刘翔以12秒95的成绩获得冠军，这不仅是他第一次获得世锦赛的冠军，也是自1999年塞维利亚世锦赛后，中国田径队获得的第一枚金牌，同时也是中国男子的第一个田径世锦赛冠军，这样刘翔就在拿下奥运冠军以及打破世界纪录后完成了令人羡慕的大满贯。 </STRONG>美国人特拉梅尔以12秒99排名第二，佩恩获得第三，中国史冬鹏以13秒19排名第五，也刷新了他个人的最好成绩。【 <A href="http://sports.163.com/07/0901/01/3N942UO800051CAQ.html" target=_blank><FONT color=#1f3a87>揭秘：刘翔决赛前因压力太大而落泪 希望外界给自己空间 </FONT></A>】 </P>
<P style="TEXT-INDENT: 2em"><A href="http://comment.sports.163.com/sports2_bbs/3N8LQA5O00051CAQ.html" target=_blank><STRONG><FONT color=#ff0000>刘翔完成110M栏大满贯 祝贺祝贺!!!!!!!! </FONT></STRONG></A></P>
<P style="TEXT-INDENT: 2em" align=center><A href="http://sports.163.com/photo/06JC0005/21735_2.html" target=_blank></A></P>
<P style="TEXT-INDENT: 2em" align=center><A href="http://sports.163.com/photo/06JC0005/21735_33.html" target=_blank><IMG id=present alt=刘翔狂喜夺冠 src="http://cimg2.163.com/photo/0005/2007-08-31/3N8OEPGK06JC0005.jpg" onload="javascript:if(this.width>&#13;&#10;700)this.width=700" name=imgsrc orig_onmouseout="null" orig_onmouseover="null"><FONT color=#1f3a87> </FONT></A></P>
<P style="TEXT-INDENT: 2em" align=center>夺冠后刘翔大喊：第一是我！【 <A href="http://sports.163.com/photoset/06JC0005/21735.html" target=_blank><FONT color=#1f3a87>查看刘翔夺冠海量图片 共享激动时刻 </FONT></A>】 </P>
<P style="TEXT-INDENT: 2em" align=center><A href="http://sports.163.com/photo/06JC0005/21735_8.html" target=_blank><IMG id=present alt=摄影记者狂拍刘翔 src="http://cimg2.163.com/photo/0005/2007-08-31/3N8N988D06JC0005.jpg" onload="javascript:if(this.width>&#13;&#10;700)this.width=700" name=imgsrc orig_onmouseout="null" orig_onmouseover="null"><FONT color=#1f3a87> </FONT></A></P>
<P style="TEXT-INDENT: 2em" align=center>全场沸腾【 <A href="http://sports.163.com/photoset/06JC0005/21735.html" target=_blank><FONT color=#1f3a87>查看刘翔夺冠海量图片 共享激动时刻 </FONT></A>】 </P>
<P style="TEXT-INDENT: 2em">昨天的半决赛，中国飞人刘翔在第三组出场，他以13秒25的成绩获得第二，和小组第一罗伯斯携手晋级决赛。第一组的争夺，中国选手史冬鹏以13秒24同样位列小组第二过关，第二小组中国小将邢衍安列小组第五无缘决赛，卫冕冠军、法国人杜库雷同样惨遭淘汰爆出冷门。 </P>
<P style="TEXT-INDENT: 2em">由于没有全力冲刺，刘翔最终以半决赛第五的身份进入了决赛，这也影响了他的决赛道次。按照安排，今晚刘翔从第九道出发，这种靠边的道次并不适合创造好成绩。另一名中国选手史冬鹏运气不错，他在决赛中排在第六道。在史冬鹏左右的分别是美国的特拉梅尔和佩恩，古巴天才罗伯斯决赛时分在了第四道。此外，西班牙选手奎诺内斯和乌克兰选手德迈杜科分列二、三道，牙买加的维格纳尔则在第八道。[ <A href="http://sports.163.com/07/0830/21/3N64PS1500051CAQ.html" target=_blank><FONT color=#1f3a87>查看决赛道次 </FONT></A>] </P>
<P style="TEXT-INDENT: 2em">北京<NOBR oncontextmenu="return false;" onmousemove=kwM(1); id=key1 onmouseover="kwE(event,1, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">时间</NOBR>晚上9点20分左右，长居体育场所有的目光全部聚集到了110米栏的起跑点，8名选手已经各自就位。中国飞人刘翔今天仍然身穿一袭红色战袍，虽然表情略显疲惫，但是热身时刘翔蹦蹦跳跳还是显得比较轻松。介绍选手的时候刘翔口中念念有词，随后张开双臂向现场的观众示意，嘴角露出一丝微笑。 </P>
<P style="TEXT-INDENT: 2em">比赛时的风速为1.7米/秒。随着裁判的提示，运动员各就各位。发令枪响起，选手们都很顺利的出发，并没有出现抢跑的现象。刘翔的起跑不错，起跑反应为0.161秒，不过他的前两个栏显得偏紧，特拉梅尔暂时领先。 </P>
<P style="TEXT-INDENT: 2em">三个栏过后，刘翔<NOBR oncontextmenu="return false;" onmousemove=kwM(4); id=key3 onmouseover="kwE(event,4, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">开始</NOBR>加速，到第五个栏架时他与特拉梅尔已经并驾齐驱。途中跑是刘翔的长项，行云流水的跨栏，节奏感十足的栏间奔跑。 <STRONG>第九个栏架过后，刘翔确立了半个身位的优势。进入最后冲刺阶段，刘翔也没有给对手任何反超的机会，毫不减速的冲刺率先冲过终点，最终显示的成绩为12秒95！这不仅是他第一次获得世锦赛的冠军，也是自1999年塞维利亚世锦赛后，中国田径队获得的第一枚金牌！ </STRONG>美国名将特拉梅尔以12秒99第二个完成比赛，另一名美国人佩恩排名第三。史冬鹏今天也发挥不错，以个人最好成绩13秒19获得第五名。 </P>
<P style="TEXT-INDENT: 2em" align=center><STRONG>110米栏决赛成绩 起跑反应刘翔第五 </STRONG></P>
<TABLE width=500 align=center border=1>
<TBODY>
<TR bgColor=#cccccc>
<TD width=58>名次 </TD>
<TD width=102>姓名 </TD>
<TD width=106>国籍 </TD>
<TD width=88>成绩 </TD>
<TD width=112>起跑反应 </TD></TR>
<TR>
<TD><FONT color=#ff0000>1 </FONT></TD>
<TD><FONT color=#ff0000>刘翔 </FONT></TD>
<TD><FONT color=#ff0000>中国 </FONT></TD>
<TD><FONT color=#ff0000>12秒95 </FONT></TD>
<TD><FONT color=#ff0000>0.161秒 </FONT></TD></TR>
<TR>
<TD>2 </TD>
<TD>特拉梅尔 </TD>
<TD>美国 </TD>
<TD>12秒99 </TD>
<TD>0.205秒 </TD></TR>
<TR>
<TD>3 </TD>
<TD>佩恩 </TD>
<TD>美国 </TD>
<TD>13秒02 </TD>
<TD>0.141秒 </TD></TR>
<TR>
<TD>4 </TD>
<TD>罗伯斯 </TD>
<TD>古巴 </TD>
<TD>13秒15 </TD>
<TD>0.164秒 </TD></TR>
<TR>
<TD><FONT color=#ff0000>5 </FONT></TD>
<TD><FONT color=#ff0000>史冬鹏 </FONT></TD>
<TD><FONT color=#ff0000>中国 </FONT></TD>
<TD><FONT color=#ff0000>13秒19 </FONT></TD>
<TD><FONT color=#ff0000>0.150秒 </FONT></TD></TR>
<TR>
<TD>6 </TD>
<TD>德迈杜科 </TD>
<TD>乌克兰 </TD>
<TD>13秒22 </TD>
<TD>0.136秒 </TD></TR>
<TR>
<TD>7 </TD>
<TD>奎诺内斯 </TD>
<TD>西班牙 </TD>
<TD>13秒33 </TD>
<TD>0.172秒 </TD></TR>
<TR>
<TD>8 </TD>
<TD>维格纳尔 </TD>
<TD>牙买加 </TD>
<TD>13秒39 </TD>
<TD>0.144秒 </TD></TR></TBODY></TABLE></DIV>]]></description>
</item><item>
<title><![CDATA[web报表-比参数更灵活的宏]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27786</link>
<author>tomatoguy</author>
<pubDate>2007/9/1 20:45:44</pubDate>
<description><![CDATA[<DIV align=center><SPAN style="COLOR: #999999">
<DIV id=td_content>
<DIV class=tit>&nbsp;</DIV>
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<DIV class=cnt>
<P class=post-head><FONT size=1><SPAN style="FONT-SIZE: 12pt">宏是一个没有数据类型的字符串标识，在报表运算之前，系统会全面搜索整张报表定义，将所有的宏名替换成宏值。</SPAN><SPAN style="FONT-SIZE: 12pt">宏是一个没有数据类型的字符串标识，在报表运算之前，系统会全面搜索整张报表定义，将所有的宏名替换成宏值。</SPAN></FONT></P>
<DD class="post-body last">
<DIV class=content-wrapper>
<DIV class=postText>
<P><SPAN style="FONT-SIZE: 12pt"></SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN>在快逸报表设计器中，打开</SPAN> <SPAN>宏</SPAN><SPAN>.raq。</SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"></SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 12pt">预览效果如下：</SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 12pt"><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m2.GIF"></SPAN></P>
<P style="TEXT-INDENT: 21pt"></P>
<P><SPAN><SPAN>&nbsp;&nbsp;&nbsp;</SPAN></SPAN><SPAN>首先，点击【配置】菜单的【宏定义】，打开宏编辑窗口，增加一个宏。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m3.GIF"> <BR>
<P style="TEXT-INDENT: 12pt"><SPAN>然后，将</SPAN><SPAN>C2</SPAN><SPAN>单元格表达式改为“</SPAN><SPAN>= ds1.${macro1}</SPAN><SPAN>”，保存。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m4.GIF"><BR>
<P><SPAN><SPAN>&nbsp;&nbsp;</SPAN><SPAN>&nbsp;&nbsp;</SPAN></SPAN><SPAN>在预览<SPAN>弹出的宏赋值对话框中，给宏</SPAN></SPAN><SPAN>macro1</SPAN><SPAN>赋值为“</SPAN><SPAN>price</SPAN><SPAN>”（</SPAN><SPAN>price</SPAN><SPAN>为数据集</SPAN><SPAN>ds1</SPAN><SPAN>中的一个字段名）。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m5.GIF"><BR>
<P style="TEXT-INDENT: 24pt"><SPAN>点击确定，会看到修改后的报表与修改前的结果是一样的。</SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>宏的实质是――<STRONG>字符串的替换</STRONG>。在这个例子里，宏</SPAN><SPAN>macro1</SPAN><SPAN>的值为“</SPAN><SPAN>price</SPAN><SPAN>”，运行时，报表引擎将“</SPAN><SPAN>= ds1.${macro1}</SPAN><SPAN>”解析为“</SPAN><SPAN>=ds1.price</SPAN><SPAN>”（</SPAN><SPAN>$</SPAN><SPAN>和</SPAN><SPAN>{}</SPAN><SPAN>是宏引用的规则写法）。</SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>如果我们将</SPAN><SPAN>macro1</SPAN><SPAN>的值改为“</SPAN><SPAN>price*2</SPAN><SPAN>”，<SPAN>预览时会发现，每样产品单价都变成了原来价格的二倍。</SPAN></SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>通过宏，不仅能将数据集的字段名传入，甚至可以替换整个</SPAN><SPAN>SQL</SPAN><SPAN>语句，对于需要灵活制表的场合，这个功能相当有用。</SPAN><SPAN></SPAN></P>本文来自：<A href="http://www.quiee.com.cn/trail/trail_3.htm"><FONT color=#2991de>快逸报表——十分钟快速体验</FONT></A>。</DIV></DIV></DD></DIV></TD></TR></TBODY></TABLE></DIV>&nbsp;</DIV></SPAN>]]></description>
</item><item>
<title><![CDATA[个人操作项数统计表--用快逸做的报表，内建数据集，可下载]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27713</link>
<author>tomatoguy</author>
<pubDate>2007/8/30 19:30:47</pubDate>
<description><![CDATA[<DIV class=date>&nbsp;</DIV>
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<DIV class=cnt>
<DIV class=rightmenu>
<DIV><A href="http://blog.yesky.com/blog/java_report/archive/2007/08/15/1707017.html"><STRONG></STRONG></A></DIV></DIV>
<DIV class=rightbox style="OVERFLOW: hidden">
<DIV class=postText><STRONG><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/nongly@0238727145281.jpg"></STRONG> <BR><BR>报表中有把人员ID转为名称的示例<BR>ds2.select1(ZuZhiJiGouMingCheng,ZuZhiJiGouID=<EM>=value</EM>())<BR><BR>附件:<BR><BR>附件：<A href="http://www.quiee.com.cn/bbs/attach.asp?id=393"><FONT color=#0000ff>点击这里下载</FONT></A><BR><BR>来自：<A href="http://www.quiee.com.cn/bbs/forumTopicRead.asp?id=760&amp;ntime=0"><FONT color=#0000ff>快逸报表技术论坛</FONT></A>。</DIV></DIV></DIV></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[web报表打印——冻结左/上表头]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27712</link>
<author>tomatoguy</author>
<pubDate>2007/8/30 19:30:47</pubDate>
<description><![CDATA[<SPAN style="FONT-FAMILY: 宋体">在快逸报表设计器中，打开</SPAN> <SPAN style="FONT-FAMILY: 宋体">冻结表头</SPAN><SPAN>.raq</SPAN><SPAN style="FONT-FAMILY: 宋体">。</SPAN>
<DIV id=td_content>
<DD class="post-body last">
<DIV class=content-wrapper>
<DIV class=postText>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">选中</SPAN><SPAN>A</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>B</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>C</SPAN><SPAN style="FONT-FAMILY: 宋体">三列，在右边的属性栏中，将其【列类型】的属性值设为“左表头”；选中第</SPAN><SPAN>1</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“标题”；选中第</SPAN><SPAN>2</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>3</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“表头”。点击保存。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"> <BR>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">预览状态下，调整设计器或浏览器窗口的大小，拖动报表的滚动条，可以发现：移动滚动条，左表头和上表头都固定不动，只有数据区在滚动</SPAN><SPAN>;</SPAN><SPAN style="FONT-FAMILY: 宋体">报表打印时，上</SPAN><SPAN>/</SPAN><SPAN style="FONT-FAMILY: 宋体">左表头会重复。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_2.GIF"></DIV></DIV></DD></DIV>
<P align=center><BR><STRONG><A name=trackback></A>引用地址：<A href="http://blog.programfan.com/trackback.asp?id=28786">http://blog.programfan.com/trackback.asp?id=28786</A></STRONG></P>]]></description>
</item><item>
<title><![CDATA[web报表打印——一张纸上打多个报表]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27693</link>
<author>tomatoguy</author>
<pubDate>2007/8/29 20:09:52</pubDate>
<description><![CDATA[&nbsp;
<DIV style="WIDTH: 520px; WORD-BREAK: break-all; WORD-WRAP: break-word">
<DIV id=td_content>
<DT class=post-head>&nbsp; 
<DD class="post-body last">
<DIV class=content-wrapper><U><FONT color=#800080>web报表打印——一张纸上打多个报表</FONT></U> 
<DIV class=postText>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">打开快逸报表设计器，打开</SPAN> <SPAN style="FONT-FAMILY: 宋体">一纸多页</SPAN><SPAN>.raq</SPAN><SPAN style="FONT-FAMILY: 宋体">文件（已经做好了的报表模板），如下图所示。我们来做一个一纸打多页的报表。</SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体"><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_1.GIF"></SPAN></P>
<P style="TEXT-INDENT: 24pt"></P>
<P style="TEXT-INDENT: 30pt"><SPAN style="FONT-FAMILY: 宋体">报表打开后，点击【属性】菜单的【报表属性】，在【报表属性】窗口的【打印】</SPAN><SPAN>Table</SPAN><SPAN style="FONT-FAMILY: 宋体">页中，设置“布局行数”＝</SPAN><STRONG><SPAN>4</SPAN></STRONG><SPAN style="FONT-FAMILY: 宋体">、“布局列数”＝</SPAN><STRONG><SPAN>2</SPAN></STRONG><SPAN style="FONT-FAMILY: 宋体">，打印次序为“<STRONG>先行后列</STRONG>”。点击【确定】关闭【报表属性】窗口。</SPAN></P>
<DIV style="TEXT-ALIGN: center"><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_2.GIF">&nbsp; <SPAN style="FONT-FAMILY: 宋体"><BR></SPAN>
<DIV style="TEXT-ALIGN: left"><SPAN style="FONT-FAMILY: 宋体">选择【</SPAN><SPAN style="FONT-FAMILY: 宋体"></SPAN><SPAN style="FONT-FAMILY: 宋体">文件</SPAN><SPAN style="FONT-FAMILY: 宋体">】-【</SPAN><SPAN style="FONT-FAMILY: 宋体"><SPAN><SPAN style="FONT-FAMILY: 宋体">打印】</SPAN> <SPAN style="FONT-FAMILY: 宋体">，预览效果如下图所示。也可以在浏览器端调用</SPAN><SPAN>Applet</SPAN><SPAN style="FONT-FAMILY: 宋体">打印控件实现。<BR><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_3.GIF"></SPAN></SPAN></SPAN></DIV></DIV></DIV></DIV></DD></DIV>
<P align=center><BR><STRONG><A name=trackback></A>引用地址：<A href="http://blog.programfan.com/trackback.asp?id=28785">http://blog.programfan.com/trackback.asp?id=28785</A></STRONG></P></DIV>]]></description>
</item><item>
<title><![CDATA[web报表打印——套打]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27692</link>
<author>tomatoguy</author>
<pubDate>2007/8/29 20:09:52</pubDate>
<description><![CDATA[<DIV align=center>&nbsp;</DIV>
<DIV style="WIDTH: 520px; WORD-BREAK: break-all; WORD-WRAP: break-word">
<DIV id=td_content>
<TABLE class=blog-content>
<TBODY>
<TR>
<TD>
<P><FONT face=宋体>打开快逸报表设计器，新建一张报表。</FONT><BR><FONT face=宋体>点击【插入】菜单中的【背景图】，在弹出的报表属性窗口中：</FONT><BR><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print1.GIF" width=500 onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0><BR><FONT face=宋体>显示方式选择为：<B>每页显示</B>，即在</FONT>web<FONT face=宋体>端展现时，每页都显示背景图；然后点击</FONT> <FONT face=宋体>“</FONT>URL<FONT face=宋体>或类名”上方的</FONT><BR>&lt;!--[if !vml]--&gt;&lt;!--[endif]--&gt;<FONT face=宋体><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print5.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0>按钮，选择背景图</FONT> <FONT face=宋体>套打</FONT>.png <FONT face=宋体>的存放路径。点击确定，关闭报表属性窗口，该背景图就显示在当前报表中了。</FONT><BR><FONT face=宋体><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print2.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0></FONT><BR><BR><FONT face=宋体>拖动格线与底图格线对齐，如上图。以</FONT>B2<FONT face=宋体>单元格为例，该单元格填入献血者的姓名。调整好该行的行高后，在该单元格内输入姓名，如“张三”，适当调整位置以保证输入的文字正好打印在该行的空白处。同样操作，输入该证中的其他信息。</FONT><BR><FONT face=宋体>点击【属性】菜单中的【报表属性】，在【打印】</FONT>Table<FONT face=宋体>页中，将左下方的“打印背景图”选中，则打印该报表时同时打印背景图，如果不选，则不打印背景图。</FONT><BR><IMG height=400 src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print3.GIF" width=500 onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0> <BR><FONT face=宋体>保存报表为</FONT> <FONT face=宋体>套打</FONT>.raq<FONT face=宋体>。</FONT><BR><FONT face=宋体>在浏览器中调用</FONT>Applet<FONT face=宋体>打印控件，预览，打印。</FONT><BR><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print4.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0>转自：<FONT face=times color=#3d7db3><A href="http://blog.csdn.net/for_report/archive/2007/07/26/1708447.aspx" target=_blank>http://blog.csdn.net/for_report/archive/2007/07/26/1708447.aspx</A></FONT> </P></TD></TR></TBODY></TABLE></DIV></DIV>]]></description>
</item><item>
<title><![CDATA[十分钟快速体验快逸报表——与Excel的良好兼容]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27690</link>
<author>tomatoguy</author>
<pubDate>2007/8/29 20:06:00</pubDate>
<description><![CDATA[
<DIV style="MARGIN-LEFT: 10px; WIDTH: 95%; WORD-BREAK: break-all; WORD-WRAP: break-word">
<DIV style="FONT-WEIGHT: bold; FONT-SIZE: 12pt; COLOR: #ff0000; TEXT-ALIGN: center">&nbsp;<BR>&nbsp;</DIV>
<DIV style="WIDTH: 520px; WORD-BREAK: break-all; WORD-WRAP: break-word">
<DIV id=td_content>
<DIV class=postText>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"><FONT size=2>打开快逸报表设计器，点击【文件】菜单中的【打开】，选择你机器上的任意一个<SPAN lang=EN-US>Excel</SPAN>文件，将其在快逸报表设计器中打开。</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"><FONT size=3><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"><SPAN lang=EN-US><?XML:NAMESPACE PREFIX = O /><O:P></O:P></SPAN></FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><FONT size=2><SPAN style="FONT-FAMILY: 宋体">不对该<SPAN lang=EN-US>Excel</SPAN>文件做任何修改，直接将其另存至<SPAN lang=EN-US>C:\QuieeReport\server\webapps\quiee\reportFiles</SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体">（以快逸报表安装在<SPAN lang=EN-US>C</SPAN>盘根目录为例）下，文件名为“<SPAN lang=EN-US>myreport.raq</SPAN>”。（<SPAN lang=EN-US>raq</SPAN>文件是快逸报表的报表模板文件）</SPAN></FONT></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"><SPAN lang=EN-US><O:P><SPAN lang=EN-US style="FONT-SIZE: 12pt; LINE-HEIGHT: 150%; FONT-FAMILY: 宋体; mso-font-kerning: 1.0pt; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><FONT size=2><?XML:NAMESPACE PREFIX = V /><V:SHAPETYPE id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600">&nbsp;</V:SHAPETYPE></FONT></SPAN></O:P></SPAN></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-FAMILY: 宋体"><FONT size=2><O:P></O:P></FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"><FONT size=2>在快逸报表设计器中的启动<SPAN lang=EN-US>Tomcat</SPAN>，【文件】菜单中【在IE中浏览】，打开demo，可以看到：在浏览器左边的树型目录中有我们保存的<SPAN lang=EN-US>myreport</SPAN>，点击，在浏览器右侧窗口就能看到这张报表以<SPAN lang=EN-US>HTML</SPAN>发布在浏览器中的样式。</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_2.GIF"></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: 宋体"></SPAN><SPAN lang=EN-US style="mso-bidi-font-family: Arial; mso-fareast-font-family: Arial"><SPAN style="mso-list: Ignore"><SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;</SPAN></SPAN></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><A name=_Toc161820465><FONT size=5><SPAN lang=EN-US style="mso-bidi-font-family: Arial; mso-fareast-font-family: Arial"><SPAN style="mso-list: Ignore"><SPAN style="FONT: 7pt 'Times New Roman'">&nbsp;</SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 黑体; mso-ascii-font-family: Arial">导出</SPAN><SPAN lang=EN-US>Excel</SPAN></FONT></A><FONT size=5><SPAN style="mso-bookmark: _Toc161820465"><SPAN style="FONT-FAMILY: 黑体; mso-ascii-font-family: Arial">、</SPAN><SPAN lang=EN-US>PDF</SPAN></SPAN><SPAN style="mso-bookmark: _Toc161820465"><SPAN style="FONT-FAMILY: 黑体; mso-ascii-font-family: Arial">、</SPAN><SPAN lang=EN-US>Word</SPAN></SPAN></FONT></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">仍然在</SPAN><SPAN lang=EN-US><FONT face="Times New Roman">1</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">打开的浏览器中，在</SPAN><SPAN style="FONT-FAMILY: 宋体">左边的树型目录中</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">，任意点击其中的例子报表。</SPAN></FONT></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在运算出的结果报表上方，有一排功能按钮，点击相应按钮，可将当前报表导出为</SPAN><SPAN lang=EN-US><FONT face="Times New Roman">Excel</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">、</SPAN><SPAN lang=EN-US><FONT face="Times New Roman">PDF</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">。</SPAN></FONT>&nbsp;快逸报表导出Excel\pdf、word不失真。</P>
<P align=center><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_3.GIF"></P></DIV></DIV>
<P align=center><BR><STRONG><A name=trackback></A>引用地址：<A href="http://blog.programfan.com/trackback.asp?id=28716">http://blog.programfan.com/trackback.asp?id=28716</A></STRONG></P></DIV></DIV>
<TABLE class=tb_topbottom width="98%" align=center border=0>
<TBODY>
<TR>
<TD>
<P style="FONT-SIZE: 18pt" align=left>&nbsp;</P></TD></TR>
<TR>
<TD>
<DIV align=left>&nbsp;</DIV></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0 width=755 align=center border=0>
<TBODY>
<TR vAlign=top background="template/skin6/bk.gif">
<TD style="PADDING-LEFT: 5px" width=555 background=template/skin6/bk.gif></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[台当局“陆委会”否决姚明9月7日赴台申请]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27591</link>
<author>tomatoguy</author>
<pubDate>2007/8/26 19:51:04</pubDate>
<description><![CDATA[<DIV id=endText>
<P class=endSummary>　　台当局“陆委会”23日口头通知“中华篮球协会”，否决姚明9月7日赴台访问的申请。姚明预定9月7日到10日赴台访问，包括到新竹科学园区，与台湾科技业<NOBR oncontextmenu="return false;" onmousemove=kwM(0); id=key0 onmouseover="kwE(event,0, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">领导</NOBR>人进行募款午宴，为台湾弱势团体募集20万美元善款。 </P>
<P style="TEXT-INDENT: 2em">
<H1 id=endTitle></H1>
<P></P>
<P style="TEXT-INDENT: 2em"><STRONG>中国台湾网8月25日报道</STRONG> 据台湾“中时电子报”报道，台“中华篮协”执行副秘书长王<CLK><NOBR oncontextmenu="return false;" onmousemove=kwM(2); id=key1 onmouseover="kwE(event,2, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">人生</NOBR></CLK>表示，台当局“陆委会”23日口头通知“中华篮球协会”，否决<A href="http://sports.163.com/special/0005222S/yao.html"><FONT color=#1f3a87>姚明</FONT></A>9月7日赴台访问的申请。【后续报道：<A href="http://sports.163.com/07/0825/21/3MP6OSPK00051KMG.html" target=_blank><STRONG><FONT color=#1f3a87>台湾当局“陆委会”否决姚明9月7日赴台访问申请</FONT></STRONG></A>】【<A href="http://sports.163.com/07/0825/21/3MP762SO00051KMG.html" target=_blank><STRONG><FONT color=#1f3a87>慈善访台竟遭拒 台湾怕姚明帮奥运圣火拉同情票</FONT></STRONG></A>】</P>
<P style="TEXT-INDENT: 2em">据台媒报道，姚明预定9月7日到10日赴台访问，是“中华篮协”与中国篮球<NOBR oncontextmenu="return false;" onmousemove=kwM(4); id=key3 onmouseover="kwE(event,4, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">管理</NOBR>中心两岸篮球交流活动既定行程。姚明赴台行程，包括到新竹科学园区，与台湾科技业<CLK>领导</CLK>人进行募款午宴，为台湾弱势团体募集20万美元善款。</P>
<P style="TEXT-INDENT: 2em">台“中华篮协”执行副秘书长王人生说，姚明赴台的活动计划，与9月1日到7日在苗栗、花莲开打的“海峡杯”<NOBR oncontextmenu="return false;" onmousemove=kwM(6); id=key4 onmouseover="kwE(event,6, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">篮球</NOBR>赛一并送交台当局“陆委会”审议。</P>
<P style="TEXT-INDENT: 2em">台当局“陆委会”同意核发入台签证给本季甲级篮球联赛第三名<CLK>江苏</CLK>南钢队、第五名<A href="http://sports.163.com/special/000521PL/sdclub.html" target=_blank><FONT color=#1f3a87>山东黄金</FONT></A>队成员，但并未核准姚明的赴台申请。</P>
<P style="TEXT-INDENT: 2em">王人生说，台当局“陆委会”否决姚明赴台的正式公文与书面说明尚未送达“中华篮协”，而“中华篮协”理事长王人达至“中时电子报”截稿前<CLK><NOBR oncontextmenu="return false;" onmousemove=kwM(3); id=key2 onmouseover="kwE(event,3, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">手机</NOBR></CLK>关机，王人达尚未正式说明台当局“陆委会”可能拒绝姚明赴台的原因。<A href="http://sports.163.com/"><IMG class=icon height=11 alt=柏森 src="http://cimg2.163.com/sports/newimg/arc_s.gif" width=12 border=0></A> </P></DIV>]]></description>
</item><item>
<title><![CDATA[台当局“陆委会”否决姚明9月7日赴台申请]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27590</link>
<author>tomatoguy</author>
<pubDate>2007/8/26 19:51:04</pubDate>
<description><![CDATA[<A></A>
<DIV id=endText>
<DIV class=endSummary>
<UL>
<LI>　　台当局“陆委会”23日口头通知“中华篮球协会”，否决姚明9月7日赴台访问的申请。姚明预定9月7日到10日赴台访问，包括到新竹科学园区，与台湾科技业<NOBR oncontextmenu="return false;" onmousemove=kwM(0); id=key0 onmouseover="kwE(event,0, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">领导</NOBR>人进行募款午宴，为台湾弱势团体募集20万美元善款。 </LI></UL></DIV>
<P style="TEXT-INDENT: 2em">
<H1 id=endTitle></H1>
<P></P>
<P style="TEXT-INDENT: 2em"><STRONG>中国台湾网8月25日报道</STRONG> 据台湾“中时电子报”报道，台“中华篮协”执行副秘书长王<CLK><NOBR oncontextmenu="return false;" onmousemove=kwM(2); id=key1 onmouseover="kwE(event,2, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">人生</NOBR></CLK>表示，台当局“陆委会”23日口头通知“中华篮球协会”，否决<A href="http://sports.163.com/special/0005222S/yao.html"><FONT color=#1f3a87>姚明</FONT></A>9月7日赴台访问的申请。【后续报道：<A href="http://sports.163.com/07/0825/21/3MP6OSPK00051KMG.html" target=_blank><STRONG><FONT color=#1f3a87>台湾当局“陆委会”否决姚明9月7日赴台访问申请</FONT></STRONG></A>】【<A href="http://sports.163.com/07/0825/21/3MP762SO00051KMG.html" target=_blank><STRONG><FONT color=#1f3a87>慈善访台竟遭拒 台湾怕姚明帮奥运圣火拉同情票</FONT></STRONG></A>】</P>
<P style="TEXT-INDENT: 2em">据台媒报道，姚明预定9月7日到10日赴台访问，是“中华篮协”与中国篮球<NOBR oncontextmenu="return false;" onmousemove=kwM(4); id=key3 onmouseover="kwE(event,4, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">管理</NOBR>中心两岸篮球交流活动既定行程。姚明赴台行程，包括到新竹科学园区，与台湾科技业<CLK>领导</CLK>人进行募款午宴，为台湾弱势团体募集20万美元善款。</P>
<P style="TEXT-INDENT: 2em">台“中华篮协”执行副秘书长王人生说，姚明赴台的活动计划，与9月1日到7日在苗栗、花莲开打的“海峡杯”<NOBR oncontextmenu="return false;" onmousemove=kwM(6); id=key4 onmouseover="kwE(event,6, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">篮球</NOBR>赛一并送交台当局“陆委会”审议。</P>
<P style="TEXT-INDENT: 2em">台当局“陆委会”同意核发入台签证给本季甲级篮球联赛第三名<CLK>江苏</CLK>南钢队、第五名<A href="http://sports.163.com/special/000521PL/sdclub.html" target=_blank><FONT color=#1f3a87>山东黄金</FONT></A>队成员，但并未核准姚明的赴台申请。</P>
<P style="TEXT-INDENT: 2em">王人生说，台当局“陆委会”否决姚明赴台的正式公文与书面说明尚未送达“中华篮协”，而“中华篮协”理事长王人达至“中时电子报”截稿前<CLK><NOBR oncontextmenu="return false;" onmousemove=kwM(3); id=key2 onmouseover="kwE(event,3, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC();" onmouseout="kwL(event, this);" target="_blank">手机</NOBR></CLK>关机，王人达尚未正式说明台当局“陆委会”可能拒绝姚明赴台的原因。</P></DIV>]]></description>
</item><item>
<title><![CDATA[web报表-比参数更灵活的宏]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27545</link>
<author>tomatoguy</author>
<pubDate>2007/8/24 19:51:04</pubDate>
<description><![CDATA[<DIV class=date>&nbsp;</DIV>
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<DIV class=cnt>
<P class=post-head><FONT size=1><SPAN style="FONT-SIZE: 12pt">宏是一个没有数据类型的字符串标识，在报表运算之前，系统会全面搜索整张报表定义，将所有的宏名替换成宏值。</SPAN><SPAN style="FONT-SIZE: 12pt">宏是一个没有数据类型的字符串标识，在报表运算之前，系统会全面搜索整张报表定义，将所有的宏名替换成宏值。</SPAN></FONT></P>
<DD class="post-body last">
<DIV class=content-wrapper>
<DIV class=postText>
<P><SPAN style="FONT-SIZE: 12pt"></SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN>在快逸报表设计器中，打开</SPAN> <SPAN>宏</SPAN><SPAN>.raq。</SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"></SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 12pt">预览效果如下：</SPAN></P>
<P style="TEXT-INDENT: 21pt"><SPAN style="FONT-SIZE: 12pt"><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m2.GIF"></SPAN></P>
<P style="TEXT-INDENT: 21pt"></P>
<P><SPAN><SPAN>&nbsp;&nbsp;&nbsp;</SPAN></SPAN><SPAN>首先，点击【配置】菜单的【宏定义】，打开宏编辑窗口，增加一个宏。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m3.GIF"> <BR>
<P style="TEXT-INDENT: 12pt"><SPAN>然后，将</SPAN><SPAN>C2</SPAN><SPAN>单元格表达式改为“</SPAN><SPAN>= ds1.${macro1}</SPAN><SPAN>”，保存。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m4.GIF"><BR>
<P><SPAN><SPAN>&nbsp;&nbsp;</SPAN><SPAN>&nbsp;&nbsp;</SPAN></SPAN><SPAN>在预览<SPAN>弹出的宏赋值对话框中，给宏</SPAN></SPAN><SPAN>macro1</SPAN><SPAN>赋值为“</SPAN><SPAN>price</SPAN><SPAN>”（</SPAN><SPAN>price</SPAN><SPAN>为数据集</SPAN><SPAN>ds1</SPAN><SPAN>中的一个字段名）。</SPAN></P><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_m5.GIF"><BR>
<P style="TEXT-INDENT: 24pt"><SPAN>点击确定，会看到修改后的报表与修改前的结果是一样的。</SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>宏的实质是――<STRONG>字符串的替换</STRONG>。在这个例子里，宏</SPAN><SPAN>macro1</SPAN><SPAN>的值为“</SPAN><SPAN>price</SPAN><SPAN>”，运行时，报表引擎将“</SPAN><SPAN>= ds1.${macro1}</SPAN><SPAN>”解析为“</SPAN><SPAN>=ds1.price</SPAN><SPAN>”（</SPAN><SPAN>$</SPAN><SPAN>和</SPAN><SPAN>{}</SPAN><SPAN>是宏引用的规则写法）。</SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>如果我们将</SPAN><SPAN>macro1</SPAN><SPAN>的值改为“</SPAN><SPAN>price*2</SPAN><SPAN>”，<SPAN>预览时会发现，每样产品单价都变成了原来价格的二倍。</SPAN></SPAN><SPAN></SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN>通过宏，不仅能将数据集的字段名传入，甚至可以替换整个</SPAN><SPAN>SQL</SPAN><SPAN>语句，对于需要灵活制表的场合，这个功能相当有用。</SPAN><SPAN></SPAN></P>本文来自：<A href="http://www.quiee.com.cn/trail/trail_3.htm"><FONT color=#2991de>快逸报表——十分钟快速体验</FONT></A>。</DIV></DIV></DD></DIV></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[3.4 练习——几张来自内建数据集的报表]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27544</link>
<author>tomatoguy</author>
<pubDate>2007/8/24 19:51:04</pubDate>
<description><![CDATA[<DIV class=postText>&nbsp;1、用<A class=style2 href="http://www.quiee.com.cn/knowledge/tech/tech_4_3_2.htm">3.2</A>节中的<A class=style2 href="http://www.quiee.com.cn/download/doc/example/3.2.3.raq">表3</A>的内建数据集，制作下面的报表（<A class=style2 href="http://www.quiee.com.cn/download/doc/example/3.4.1.raq">下载</A>） 
<P align=center><IMG height=307 alt="" src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_3_4_1.gif" width=433></P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;2、仍然用<A class=style2 href="http://www.quiee.com.cn/knowledge/tech/tech_4_3_2.htm">3.2</A>节的<A class=style2 href="http://www.quiee.com.cn/download/doc/example/3.2.3.raq">表3</A>作为内建数据集，但是使用下面的语句：在姓名单元格中，其表达式为： <EM>=ds1.select( 姓名 , true, 性别 ==' 男 ', 编号 )。</EM>该表达式的含义是：从数据源ds1中选取性别为男性的“姓名”字段的值、并按“编号”降序排列。True参数表示按降序排列，False参数表示按升序排列。（<A class=style2 href="http://www.quiee.com.cn/download/doc/example/3.4.2.raq">下载</A>）</P>
<P align=center><IMG height=218 alt="" src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_3_4_2.gif" width=439></P>&nbsp;来自：<A href="http://www.quiee.com.cn/knowledge/tech/tech_4_3_4.htm">快逸报表——3.4 练习 几张来自内建数据集的报表</A>。</DIV>]]></description>
</item><item>
<title><![CDATA[sdf]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27516</link>
<author>tomatoguy</author>
<pubDate>2007/8/23 18:03:30</pubDate>
<description><![CDATA[<DD class="post-body last">
<P class=writeblog><SPAN style="FONT-FAMILY: 宋体">在快逸报表设计器中，打开</SPAN> <SPAN style="FONT-FAMILY: 宋体">冻结表头</SPAN><SPAN>.raq</SPAN><SPAN style="FONT-FAMILY: 宋体">。</SPAN></P>
<DIV class=content-wrapper>
<DIV class=postText>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">选中</SPAN><SPAN>A</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>B</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>C</SPAN><SPAN style="FONT-FAMILY: 宋体">三列，在右边的属性栏中，将其【列类型】的属性值设为“左表头”；选中第</SPAN><SPAN>1</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“标题”；选中第</SPAN><SPAN>2</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>3</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“表头”。点击保存。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"> <BR>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">预览状态下，调整设计器或浏览器窗口的大小，拖动报表的滚动条，可以发现：移动滚动条，左表头和上表头都固定不动，只有数据区在滚动</SPAN><SPAN>;</SPAN><SPAN style="FONT-FAMILY: 宋体">报表打印时，上</SPAN><SPAN>/</SPAN><SPAN style="FONT-FAMILY: 宋体">左表头会重复。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_2.GIF"></DIV></DIV></DD>]]></description>
</item><item>
<title><![CDATA[web报表打印——冻结左/上表头]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27515</link>
<author>tomatoguy</author>
<pubDate>2007/8/22 18:03:30</pubDate>
<description><![CDATA[<SPAN style="FONT-FAMILY: 宋体">在快逸报表设计器中，打开</SPAN> <SPAN style="FONT-FAMILY: 宋体">冻结表头</SPAN><SPAN>.raq</SPAN><SPAN style="FONT-FAMILY: 宋体">。</SPAN>
<DD class="post-body last">
<DIV class=content-wrapper>
<DIV class=postText>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">选中</SPAN><SPAN>A</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>B</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>C</SPAN><SPAN style="FONT-FAMILY: 宋体">三列，在右边的属性栏中，将其【列类型】的属性值设为“左表头”；选中第</SPAN><SPAN>1</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“标题”；选中第</SPAN><SPAN>2</SPAN><SPAN style="FONT-FAMILY: 宋体">、</SPAN><SPAN>3</SPAN><SPAN style="FONT-FAMILY: 宋体">行，将其【行类型】的属性值设为“表头”。点击保存。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_1.GIF"> <BR>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">预览状态下，调整设计器或浏览器窗口的大小，拖动报表的滚动条，可以发现：移动滚动条，左表头和上表头都固定不动，只有数据区在滚动</SPAN><SPAN>;</SPAN><SPAN style="FONT-FAMILY: 宋体">报表打印时，上</SPAN><SPAN>/</SPAN><SPAN style="FONT-FAMILY: 宋体">左表头会重复。</SPAN></P><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/quiee_2.GIF"></DIV></DIV></DD>]]></description>
</item><item>
<title><![CDATA[web报表打印——一张纸上打多个报表]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27514</link>
<author>tomatoguy</author>
<pubDate>2007/8/23 18:03:30</pubDate>
<description><![CDATA[<P class=post-head><U><FONT color=#800080>web报表打印——一张纸上打多个报表</FONT></U> </P>
<DD class="post-body last">
<DIV class=content-wrapper>
<DIV class=postText>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体">打开快逸报表设计器，打开</SPAN> <SPAN style="FONT-FAMILY: 宋体">一纸多页</SPAN><SPAN>.raq</SPAN><SPAN style="FONT-FAMILY: 宋体">文件（已经做好了的报表模板），如下图所示。我们来做一个一纸打多页的报表。</SPAN></P>
<P style="TEXT-INDENT: 24pt"><SPAN style="FONT-FAMILY: 宋体"><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_1.GIF"></SPAN></P>
<P style="TEXT-INDENT: 24pt"></P>
<P style="TEXT-INDENT: 30pt"><SPAN style="FONT-FAMILY: 宋体">报表打开后，点击【属性】菜单的【报表属性】，在【报表属性】窗口的【打印】</SPAN><SPAN>Table</SPAN><SPAN style="FONT-FAMILY: 宋体">页中，设置“布局行数”＝</SPAN><STRONG><SPAN>4</SPAN></STRONG><SPAN style="FONT-FAMILY: 宋体">、“布局列数”＝</SPAN><STRONG><SPAN>2</SPAN></STRONG><SPAN style="FONT-FAMILY: 宋体">，打印次序为“<STRONG>先行后列</STRONG>”。点击【确定】关闭【报表属性】窗口。</SPAN></P>
<DIV style="TEXT-ALIGN: center"><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_2.GIF">&nbsp; <SPAN style="FONT-FAMILY: 宋体"><BR></SPAN>
<DIV style="TEXT-ALIGN: left"><SPAN style="FONT-FAMILY: 宋体">选择【</SPAN><SPAN style="FONT-FAMILY: 宋体"></SPAN><SPAN style="FONT-FAMILY: 宋体">文件</SPAN><SPAN style="FONT-FAMILY: 宋体">】-【</SPAN><SPAN style="FONT-FAMILY: 宋体"><SPAN><SPAN style="FONT-FAMILY: 宋体">打印】</SPAN> <SPAN style="FONT-FAMILY: 宋体">，预览效果如下图所示。也可以在浏览器端调用</SPAN><SPAN>Applet</SPAN><SPAN style="FONT-FAMILY: 宋体">打印控件实现。<BR><IMG alt="" src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print_3.GIF"></SPAN></SPAN></SPAN></DIV></DIV></DIV></DIV></DD>]]></description>
</item><item>
<title><![CDATA[四、第一张基于数据的表]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27512</link>
<author>tomatoguy</author>
<pubDate>2007/8/23 18:03:30</pubDate>
<description><![CDATA[<DIV align=center>&nbsp;<BR>&nbsp;</DIV>
<DIV style="WIDTH: 520px; WORD-BREAK: break-all; WORD-WRAP: break-word">
<DIV id=td_content>
<P class=MsoNormal style="TEXT-ALIGN: left; mso-outline-level: 1; mso-layout-grid-align: none" align=left><B><SPAN style="FONT-SIZE: 22pt; FONT-FAMILY: SimSun; mso-font-kerning: 0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 22pt; mso-font-kerning: 0pt"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></B>&nbsp;</P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">现在，可以来做一张最常见的基于数据的报表了。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">步骤</SPAN><SPAN lang=EN-US>1</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：我们打开“销售数据</SPAN><SPAN lang=EN-US>.raq</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">”，单击</SPAN><SPAN lang=EN-US>C3</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">单元格，在右侧属性栏选择【值】属性的属性值，如下图所示：</SPAN></P>
<P class=MsoNormal><SPAN lang=EN-US><?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /><v:shape id=_x0000_i1039 style="WIDTH: 6in; HEIGHT: 291.75pt" coordsize="21600,21600" type="#_x0000_t75"><v:imagedata o:title="" src="file9659.files/image029.png"></v:imagedata></v:shape></SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在【属性值】的空白处输入想要单元格显示的内容。如输入实数“</SPAN><SPAN lang=EN-US>100</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">”或文字“姓名”，则单元格就会显示出“</SPAN><SPAN lang=EN-US>100</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">”或“姓名”；</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">步骤</SPAN><SPAN lang=EN-US>2</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：在本例中，我们选择【表达式】，双击【表达式】的空白处，弹出窗体如下图所示，可以进行表达式编辑：</SPAN></P>
<P class=MsoNormal><SPAN lang=EN-US><v:shape id=_x0000_i1040 style="WIDTH: 431.25pt; HEIGHT: 324pt" coordsize="21600,21600" type="#_x0000_t75"><v:imagedata o:title="" src="file9659.files/image031.png"></v:imagedata></v:shape></SPAN></P>
<P class=MsoNormal><SPAN lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">步骤</SPAN><SPAN lang=EN-US>3</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：按以下步骤进行表达式编辑：</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN lang=EN-US>Step 1</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">、双击选择【可选数据集】中的数据集“</SPAN><SPAN lang=EN-US>ds<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:chmetcnv w:st="on" UnitName="”" SourceValue="1" HasSpace="False" Negative="False" NumberType="1" TCSC="0">1<SPAN lang=EN-US style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><SPAN lang=EN-US>”</SPAN></SPAN></st1:chmetcnv><SPAN lang=EN-US style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">。</SPAN></SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN lang=EN-US>Step 2</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">、双击选择【可选函数】中的数据集函数：</SPAN><SPAN lang=EN-US>select()</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">。注意：可点击【函数帮助】按钮获取对函数的解释。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN lang=EN-US>Step 3</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">、光标停在</SPAN><SPAN lang=EN-US>select()</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">的括号中间，双击选择【可选字段】中的“销售代表”。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">这样就生成了表达式：</SPAN><SPAN lang=EN-US>ds1.select(</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">销售代表</SPAN><SPAN lang=EN-US>)</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">也就是说，选出了要扩展的数据。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">当单元格的数据值表达式包含集合函数</SPAN><SPAN lang=EN-US>(</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">本例为</SPAN><SPAN lang=EN-US>select())</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">时，单元格默认是可扩展单元格。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">由于在</SPAN><SPAN lang=EN-US>C3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">中放的数据是可扩展的，因此，</SPAN><SPAN lang=EN-US>C3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">就成为了后面格子的主格。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">步骤</SPAN><SPAN lang=EN-US>4</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：接下来，把其他字段放上去，</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在</SPAN><SPAN lang=EN-US>D3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">输入：</SPAN><SPAN lang=EN-US>= ds1.</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">地区</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">在</SPAN><SPAN lang=EN-US>E3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">输入：</SPAN><SPAN lang=EN-US>= ds1.</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">销售额</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">当然在</SPAN><SPAN lang=EN-US>D3</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">、</SPAN><SPAN lang=EN-US>E3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">中输入时，也可以采用在</SPAN><SPAN lang=EN-US>C3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">输入时的数据值表达式编辑方法，只是不选择函数罢了。由于</SPAN><SPAN lang=EN-US>C3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">已经是主格了，所以后面这些数据都是自动根据</SPAN><SPAN lang=EN-US>C3 </SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">扩展的，因此不需要再用</SPAN><SPAN lang=EN-US>select()</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">函数，直接把字段放上去就可以了。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">步骤</SPAN><SPAN lang=EN-US>5</SPAN><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">：现在看一下预览：</SPAN></P>
<P class=MsoNormal style="TEXT-ALIGN: left; mso-layout-grid-align: none" align=left><SPAN lang=EN-US style="FONT-SIZE: 12pt; FONT-FAMILY: SimSun; mso-font-kerning: 0pt; mso-bidi-font-family: SimSun; mso-hansi-font-family: 'Times New Roman'"><o:p>&nbsp;</o:p></SPAN></P>
<P class=MsoNormal style="TEXT-ALIGN: left; mso-layout-grid-align: none" align=left><SPAN lang=EN-US style="FONT-SIZE: 12pt; FONT-FAMILY: SimSun; mso-font-kerning: 0pt; mso-bidi-font-family: SimSun; mso-hansi-font-family: 'Times New Roman'"><v:shape id=_x0000_i1041 style="WIDTH: 6in; HEIGHT: 291.75pt" coordsize="21600,21600" type="#_x0000_t75"><v:imagedata o:title="" src="file9659.files/image033.png"></v:imagedata></v:shape><o:p></o:p></SPAN></P>
<P class=MsoNormal style="TEXT-ALIGN: left; mso-layout-grid-align: none" align=left><SPAN lang=EN-US style="FONT-SIZE: 12pt; FONT-FAMILY: SimSun; mso-font-kerning: 0pt; mso-bidi-font-family: SimSun; mso-hansi-font-family: 'Times New Roman'"><o:p>&nbsp;</o:p></SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">第一张最简单的数据列表就生成了。</SPAN></P>
<P class=MsoNormal style="TEXT-INDENT: 21pt; mso-char-indent-count: 2.0"><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">这张报表在例子中为：</SPAN><SPAN lang=EN-US>4.2.raq</SPAN></P>
<P class=MsoNormal><SPAN lang=EN-US><o:p>&nbsp;</o:p></SPAN></P>
<P class=MsoNormal><SPAN style="FONT-FAMILY: SimSun; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">来自：</SPAN><SPAN lang=EN-US><A href="http://www.quiee.com.cn/knowledge/tech/tech_index.htm">http://www.quiee.com.cn/knowledge/tech/tech_index.htm</A></SPAN></P></DIV></DIV>]]></description>
</item><item>
<title><![CDATA[2.1 开始第一张报表，体会扩展]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27511</link>
<author>tomatoguy</author>
<pubDate>2007/8/22 18:03:30</pubDate>
<description><![CDATA[
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR align=left>
<TD vAlign=top colSpan=2 height=34>
<DIV align=center><STRONG>2.1 开始第一张报表，体会扩展 </STRONG></DIV><!-- InstanceEndEditable -->
<DIV align=left></DIV></TD></TR>
<TR align=left>
<TD vAlign=top colSpan=2 height=34><!-- InstanceBeginEditable name="内容" -->&nbsp;&nbsp;&nbsp;&nbsp;例1、先做一张和数据库无关的报表。 
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;步骤1：点击 <A href="http://www.quiee.com.cn/knowledge/tech/image_tech/new.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 height=26 src="http://www.quiee.com.cn/knowledge/tech/image_tech/new.gif" width=28 onload="java_script_:if(this.width>500)this.width=500" border=0></A>按钮，新建一张空白报表，如下图所示， </P>
<P align=center><A href="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_1.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 style="ZOOM: 80%" height=417 src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_1.gif" width=500 onload="java_script_:if(this.width>500)this.width=500" border=0></A></P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;步骤2：在 B2单元格里填写： =list(to(1,10)) ，如下图所示： </P>
<P align=center><A href="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_2.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 height=394 src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_2.gif" width=500 onload="java_script_:if(this.width>500)this.width=500" border=0></A> </P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;步骤3<STRONG></STRONG>：然后看预览，如下图所示： </P>
<P align=center><A href="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_3.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 height=394 src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_3.gif" width=500 onload="java_script_:if(this.width>500)this.width=500" border=0></A></P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;我们可以看到，B2格子里的数据自动进行了扩展。 </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;这正是报表工具与电子表格工具的最基本差异。电子表格工具只能在每个格子里填好内容，不能自动进行这种扩展。 </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;这个例子还只是最初级的，后面我们会学到如何基于数据库进行各种复杂的扩展。 </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;涉及的函数及操作符： </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<STRONG>&nbsp;读者也可以先跳过对函数和操作符的说明，在以后需要的时候再来查阅。</STRONG></P>
<P align=left><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;list </STRONG>是 获得一个枚举的数据集合的集合函数，枚举的数据类型可以是常数或表达式。如在单元格里输入： =list(“数学”,2+3) ，则返回：</P>
<P align=center><A href="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_4.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 height=392 src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_1_4.gif" width=500 onload="java_script_:if(this.width>500)this.width=500" border=0></A></P>
<P align=left><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;to</STRONG>是一个操作符，左右操作数都必须是整数，返回值是一个整数集合。</P></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR align=left>
<TD vAlign=top colSpan=2 height=34>
<DIV align=center><STRONG>主格与扩展</STRONG></DIV><!-- InstanceEndEditable -->
<DIV align=left></DIV></TD></TR>
<TR align=left>
<TD vAlign=top colSpan=2 height=34><!-- InstanceBeginEditable name="内容" -->
<P></P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;在例1中，我们再在C2单元格里输入：北京 。</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;预览看到的结果如下图所示： </P>
<P align=center><A href="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_3_1.gif" target=_blank><IMG onmousewheel="return bbimg(this)" title=点击在新窗口查看原始图片 height=398 src="http://www.quiee.com.cn/knowledge/tech/image_tech/tech_4_2_3_1.gif" width=500 onload="java_script_:if(this.width>500)this.width=500" border=0></A> </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;C2格子自动跟着B2单元格进行了扩展。 </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;这里就出现了“主格”——当B2是一个可扩展的单元格时，它后面的单元格都会跟着它自动扩展。这时， B2就叫做后面格子（如C2）的主格。 </P>
<P align=left>&nbsp;&nbsp;&nbsp;&nbsp;提示：下面的内容，可在做完练习时看，是一些规则，在以后的学习中也可以体会到，现在只需有个大概的了解即可。</P></TD></TR></TBODY></TABLE>]]></description>
</item><item>
<title><![CDATA[web报表打印——套打]]></title>
<link>http://blogger.org.cn/blog/more.asp?name=tomatoguy&amp;id=27441</link>
<author>tomatoguy</author>
<pubDate>2007/8/21 20:44:43</pubDate>
<description><![CDATA[<TABLE class=blog-content>
<TBODY>
<TR>
<TD>
<P><FONT face=宋体>打开快逸报表设计器，新建一张报表。</FONT><BR><FONT face=宋体>点击【插入】菜单中的【背景图】，在弹出的报表属性窗口中：</FONT><BR><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print1.GIF" width=500 onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0><BR><FONT face=宋体>显示方式选择为：<B>每页显示</B>，即在</FONT>web<FONT face=宋体>端展现时，每页都显示背景图；然后点击</FONT> <FONT face=宋体>“</FONT>URL<FONT face=宋体>或类名”上方的</FONT><BR>&lt;!--[if !vml]--&gt;&lt;!--[endif]--&gt;<FONT face=宋体><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print5.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0>按钮，选择背景图</FONT> <FONT face=宋体>套打</FONT>.png <FONT face=宋体>的存放路径。点击确定，关闭报表属性窗口，该背景图就显示在当前报表中了。</FONT><BR><FONT face=宋体><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print2.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0></FONT><BR><BR><FONT face=宋体>拖动格线与底图格线对齐，如上图。以</FONT>B2<FONT face=宋体>单元格为例，该单元格填入献血者的姓名。调整好该行的行高后，在该单元格内输入姓名，如“张三”，适当调整位置以保证输入的文字正好打印在该行的空白处。同样操作，输入该证中的其他信息。</FONT><BR><FONT face=宋体>点击【属性】菜单中的【报表属性】，在【打印】</FONT>Table<FONT face=宋体>页中，将左下方的“打印背景图”选中，则打印该报表时同时打印背景图，如果不选，则不打印背景图。</FONT><BR><IMG height=400 src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print3.GIF" width=500 onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0> <BR><FONT face=宋体>保存报表为</FONT> <FONT face=宋体>套打</FONT>.raq<FONT face=宋体>。</FONT><BR><FONT face=宋体>在浏览器中调用</FONT>Applet<FONT face=宋体>打印控件，预览，打印。</FONT><BR><IMG src="http://p.blog.csdn.net/images/p_blog_csdn_net/for_report/print4.GIF" onload="if(this.width>'500')this.width='500';if(this.height>'400')this.height='400';" border=0>转自：<FONT face=times color=#3d7db3><A href="http://blog.csdn.net/for_report/archive/2007/07/26/1708447.aspx" target=_blank>http://blog.csdn.net/for_report/archive/2007/07/26/1708447.aspx</A></FONT> </P></TD></TR></TBODY></TABLE>]]></description>
</item>
</channel>
</rss>