- 浏览: 1467393 次
- 性别:
- 来自: 青岛人在北京
最新评论
-
yhxf_ie:
azheng270 写道 永远是0知道答案了, inser ...
使用MySQL的LAST_INSERT_ID -
yhxf_ie:
insert了还是0... 可能还要设置些什么?
使用MySQL的LAST_INSERT_ID -
一如年少:
123123
Flex使用ribbit.com的服务给手机发送短信SMS -
pointdew:
poincare 写道您好,请教一个问题,如果我的 swf 文 ...
Flex:使用FlexPaper显示PDF文档 -
pointdew:
swf远程加载问题 : flexpaper无法加载http方式 ...
Flex:使用FlexPaper显示PDF文档
文章列表
在iReport中设置textField的高度根据内容自动变高. 选中一个textField,在属性中找到 Stretch With Overflow 并选中即可。还有一个属性叫Stretch type,默认的值是No Stretch,可以改成Relative To Band Height。但是改不改textField的都会自适应(奇怪)。Relative To Band Height 的含义可以在 JRElement.STRETCH_TYPE_RELATIVE_TO_BAND_HEIGHT 看到The graphic element will adapt its height to match ...
- 2008-04-02 18:52
- 浏览 17847
- 评论(5)
使用iReport在新建报表的pageFooter上放了个PAGE_NUMBER,可生成的pdf显示不出来,查了一下,问题如下: PageHeader/Footer是每页都会出现的Band,就算只有一页,也会出现在页头和页尾,这里适合放页号lastPageFooter根据文档上所说,有可能你想在头一页上显示一下Title里才有的内容当只有一页的时候,pageHeader出现,pageFooter不出现,lastPageFooter会出现当有n(n>1)的时候,pageHeader在每页都出现,但前n-1页 出现pageFooter,而第n页不出现pageFooter,只出现lastPage ...
- 2008-04-01 23:22
- 浏览 5258
- 评论(0)
客户更换了SVN服务器地址,在TortoiseSVN中发现有个Relocate(重新定位)功能,打开后在to URL 中写上新的svn地址就可以了。包括子目录,都更新了svn地址,呵呵,以前居然没注意到。
- 2008-04-01 10:52
- 浏览 15218
- 评论(1)
这是一个用jasperreports生成pdf的Helloworld程序 首先是一个很简单的Jasper Template 文件名helloworld.jrxml<?xml version="1.0"?>
<!DOCTYPE jasperReport
PUBLIC "-//JasperReports//DTD Report Design//EN"
"http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
<jasperReport ...
- 2008-03-31 23:47
- 浏览 2443
- 评论(0)
快去试用一下吧https://www.photoshop.com/express/landing.html 我也申请了一个 http://wangcheng.photoshop.com
- 2008-03-29 11:08
- 浏览 1600
- 评论(0)
ID公社-发现有意味的设计
http://www.hi-id.com/
Chinglish-用这种方式学英语也不错
http://www.chinglish.de/
- 2008-03-26 14:08
- 浏览 1054
- 评论(0)
使用Flex + Java实现文件上传 Flex主要使用FileReference,代码如下<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
creationComplete="init()">
<mx:Script>
[CDATA[
private const defaultRequestUrl : String = "http://localhost:8080/flexFi ...
- 2008-03-23 17:00
- 浏览 14559
- 评论(1)
项目是Struts + Spring的,想使用Spring的CommonsMultipartResolver完成上传文件功能。在网上查了一下,都是在Spring MVC中使用CommonsMultipartResolver的例子。自己解决了一下,方法如下: 最简单的,不需要配置Spring,直接在Struts的Action中写: public ActionForward fileUpload(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse respon ...
- 2008-03-21 19:03
- 浏览 5030
- 评论(0)
如果还没有安装IDEA或者JetGroovy插件,请看我上一篇《安装IntelliJ IDEA JetGroovy》http://wangcheng.iteye.com/blog/156885 1.下载Grailshttp://grails.org/Download下载grails-bin-1.0.1.zip后,解压到硬盘。你也可以安照其它文档的介绍,配置环境变量等。 2 ...
- 2008-03-19 18:26
- 浏览 21736
- 评论(4)
一个好看的Calendar日历控件 http://sotak.co.uk/calendar-icons-blog
- 2008-03-07 18:28
- 浏览 5605
- 评论(2)
table 排序控件,支持多种数据 http://tablesorter.com/docs/ 基于jQuery
- 2008-03-07 15:35
- 浏览 2435
- 评论(0)
http://www.dynamicdrive.com/
http://www.cssplay.co.uk/index
http://simplythebest.net/scripts/
- 2008-03-06 15:23
- 浏览 1312
- 评论(0)
http://www.walterzorn.com/tooltip/tooltip_e.htm http://boxover.swazz.org/ http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ http://www.walterzorn.com
- 2008-03-06 14:47
- 浏览 1642
- 评论(0)
美国商品折扣店 http://www.dealsea.com/ http://www.xpbargains.com/ http://couponsnapshot.com/ http://www.techbargains.com/ http://dealspl.us/ http://www.dealigg.com/ http://www.bestdeal.com/ 以上网站收集美国商品的打折信息,很好! 谁有更好的, 请跟贴
- 2008-02-28 16:41
- 浏览 13134
- 评论(0)
比如用 ChartFX 生成的png饼图,要求点击饼图不同区块的时候弹出不同的窗口或触发不同的事件。 Chart chart1 = new ChartServer(getServlet().getServletContext(), request, response);
...
chart1.getPoint(0,0).getLink().setUrl("popup.do?id=123");
chart1.getPoint(0,1).getLink().setUrl("popup.do?id=456");
chart1.getPoint(0,2).get ...
- 2008-02-28 15:42
- 浏览 2182
- 评论(0)