`
kong6001
  • 浏览: 142140 次
  • 性别: Icon_minigender_1
  • 来自: 广东广州
社区版块
存档分类
最新评论
文章列表
Erlang http://www.erlang.org/ http://erlang-china.org/
参考:http://raibledesigns.com/rd/entry/browser_based_username_password_autocomplete   1、页面设置一个隐藏表单,action 设置为 javascript:void(0);"  <form method="post" action="javascript:void(0);" style="display:none ">    <input type="text" id="j_username ...
但是用eclipse运行ant,运行到[javac]的时候,自动中断了,也没有任何错误提示。问题就在于eclipse对于ant的日志的管理上没配置好,导致因为日志输出失败而中断。解决方法:如图,添加 -logger org.apache.tools.ant.NoBannerLogger 参考 http://hi.baidu.com/zh_m_zhou/blog/item/2772d0171f442e58f2de3257.html
在网上下载的例子,跑起来很都会抛这个异常 com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser. ( Expecting version 5 from client, got 7. )   原因:the older version ofGWT SDK (and hence the older gwt-servlet.jar during compila ...
   {声明 拦截最大化,最小化命令,从新设置屏幕高度}   procedure   WMGetMinMaxInfo(var   mes:   TWMGetMinMaxInfo);message   WM_GetMinMaxInfo;   {截获系统消息,然后改写窗体最大化高度。Screen.WorkAreaHeight就是屏幕高度减去任务栏的高度}procedure   TForm1.WMGetMinMaxInfo(var   mes:   TWMGetMinMaxInfo);begin    mes.MinMaxInfo.ptMaxSize.X   :=   Screen.Width;  ...
Form启动时候,从新设置窗体的Style:  procedure TForm1.onFormCreate(Sender: TObject);var nbStyleFix:Integer;      {修复无边框窗体WebBrowser右键/属性程序挂起}begin  nbStyleFix := GetwindowLong(Form1.Handle, GWL_STYLE);  nbStyleFix := nbStyleFix - WS_POPUP;  SetWindowLong(Form1.Handle, GWL_STYLE, nbStyleFix);end
1、preferences->Java->Code Style->Code Formatter->Show... ,打开之后,选择“Line Wrapping”选项卡,在“Maximun line width”指定大于多少列时换行。 2、还是在“Line Wrapping”选项卡中,能过选择"Line Wrapping policy"可以指定构造函数、方法体等的换行情况。 不过,SUN推荐的编码风格默认是80列换行。 1.Java代码 打开Eclipse的Window菜单,然后Preferences->Java->Code Style- ...
1、MagicDraw UML 建模工具 2、EMS SQL Manager 2005 for MySQL Mysql数据库客户端
conf/server.xml 加入  URIEncoding="GBK" <Connector URIEncoding="GBK" port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />   注意:Eclipse中servers配置中修改server.xml需要重启才生效
Private Sub Excel_Exchange() '#先拷贝Excel Set xlapp = CreateObject("Excel.Application") '创建EXCEL对象 file = txtDirectory.Text Set xlbook = xlapp.Workbooks.Open(file) '打开已经存在的EXCEL工件簿文件 xlapp.Visible = False '设置EXCEL对象可见(或不可见) Set xlsheet = xlbook.Worksheets(1) '设置活动工作表 xlsheet.Activat ...
在 apache-tomcat-6.0.20\conf\Catalina\localhost中新建应用描述文件, <Context path="/" docBase="E:/syncSpace/eclipseWorkspace/www.abc.com/root" reloadable="true" debug="0" privileged="true" ></Context>   docBase="E:/syncSpace/eclipseWorks ...
1、先安装ruby 2、更新gem 版本,不更新会导致安装失败   >>gem update --system 更新完成后,清除备份的旧版本gem包 >>gem cleanup 3、安装rails >>gem install rails   安装完成后的gem list actionmailer (2.3.4) actionpack (2.3.4) activerecord (2.3.4) activeresource (2.3.4) activesupport (2.3.4) builder (2.1.2) camping (1 ...
<%= simple_format @content %>
找到 etc\netbeans.conf 添加-J-Dfile.encoding=UTF-8参数 netbeans_default_options="-J-Dfile.encoding=UTF-8
使用 gem install sqlite3-ruby 安装的版本为1.2.4有问题 改用指定版本安装低版本 gem install sqlite3-ruby -v 1.2.3
Global site tag (gtag.js) - Google Analytics