Private Sub Worksheet_Change(ByVal Target As Range)Dim srg As Range, x As ShapeIf Target.Count = Target.EntireRow.Cells.Count Then For Each x In Shape...
分类:
其他好文 时间:
2014-07-25 03:50:35
阅读次数:
237
提交时忘记编写日志,事后想在版本库浏览器中编辑日志信息,却弹出错误,“此版本库不允许修改版本属性请管理员创建pre-revprop-change钩子”。解决方法如下: 在版本库的hooks目录中,新建pre-revprop-change.ba...
分类:
其他好文 时间:
2014-07-25 00:11:44
阅读次数:
285
与服务器进行数据交换时,尤其是数据中含有中文时,要注意中文的编码问题。要选择服务器接受的编码方式,否则会造成显示乱码。
经验:
实验室服务器的数据库,中文用GBK编码,但我提交的是UTF-8编码的中文,结果出现乱码:
于是借鉴了网上的代码,添加了自动转换指定编码的函数:
#Change encoding type
def chmod(mes, encodin...
分类:
编程语言 时间:
2014-07-24 23:16:03
阅读次数:
255
In the partime, a simle program attracted my attention whose content is to change number to english by reading rule of money.It took about one hour to deal with this question. Now the source was shar...
分类:
其他好文 时间:
2014-07-24 23:15:23
阅读次数:
280
1.package test;
import java.util.Hashtable;
import java.util.Map;
public class test {
public static String change(String param){
param=null;
return param;
}
public static void main(String[] a...
分类:
编程语言 时间:
2014-07-24 23:11:24
阅读次数:
285
### Host Database## localhost is used to configure the loopback interface# when the system is booting.Do not change this entry.127.0.0.1 localhost255....
分类:
其他好文 时间:
2014-07-24 21:47:13
阅读次数:
553
Google Custom Search Engines use a timer to check the hash against a previous value, whilst the child iframe on a seperate domain updates the parent‘s location hash to contain the size of the ifram...
分类:
Web程序 时间:
2014-07-24 12:31:35
阅读次数:
289
环境搭建OS X系统上
Win7运行OS X虚拟机
在 OS X上安装MAMP运行环境
IDE使用 Netbeans PHP版本开发
数据库使用mysql
自学资料使用:PHP从入门到精通.pdf
第一阶段书写学习代码,外加注释详解
To change this license header, choose Li...
分类:
Web程序 时间:
2014-07-23 21:04:25
阅读次数:
460
最近公司要用easyui,这里自己看了官网几篇文章,遇到些问题,大多数的问题都是敲代码的时候笔误,其他有些地方确实需要注意一下,这里做些笔记。1.在mysql中建好表之后修改id字段为递增字段,发现这个奇怪的mysql语法,如下alter table student change id id int...
分类:
其他好文 时间:
2014-07-23 20:52:55
阅读次数:
305
今天在用git的时候遇到了一个问题。在想远程分支push的时候,出现了下面的错误:
! [remote rejected] master -> refs/for/master (change 144 closed)
error: failed to push some refs to ...
检查了一下发现是因为本地分支的版本相比远程分支的版本低。
解决的过程中有如下问题:
1、(不建议...
分类:
其他好文 时间:
2014-07-23 17:06:51
阅读次数:
251