- 浏览: 154402 次
- 性别:
- 来自: 广州
-
最新评论
-
喵喵大神:
免费的汇率API:https://www.juhe.cn/do ...
汇率查询API -
zx19924311:
在吗! 请教下 我也遇到这个问题了 ,无法解决配置方式< ...
cannot be cast to org.springframework.web.method.HandlerMethod 解决方法 -
fende:
Eclipse安装Freemarker插件[转] -
yangboqing:
darkobe 写道我怎么保存不了赋值啊,打开是 空的,求教模 ...
IText使用PDF模板输出报表的实践 -
SwordShadow:
博主,写的不错,补充一下添加中文支持BaseFont bfch ...
IText使用PDF模板输出报表的实践
文章列表
一个网卡两个网关:
192.168.1.1 为互联网网关
192.168.1.2 为软件服务器网关
先将网卡设为1.1
然后
开始->运行
route add -p 服务器地址 mask 255.255.255.255 192.168.1.2
route add -p 192.168.10.165 mask 255.255.255.255 192.168.1.2
{dede:sql sql=’Select content from dede_arctype where id=1′}
[field:content/]
{/dede:sql}
http://titayuna.blog.163.com/blog/static/88173320200972334843807/
delphi 利用Work 实现套打
- 博客分类:
- delphi
原文地址:http://xxzqb.blog.163.com/blog/static/4122142920089249514506/
定义组件
ChooseWA: TWordApplication;
ChooseWD: TWordDocument;
ChooseWF: TWordFont;
procedure TForm1.btn3Click(Sender: TObject);
var
ItemIndex: OleVariant;
filePath :OleVariant;
i,total:integer;
begin
ItemIndex := ...
procedure TFrmZxjsjbhzsfjlfwjlDj.FormMouseWheel(Sender: TObject;
Shift: TShiftState; WheelDelta: Integer; MousePos: TPoint;
var Handled: Boolean);
begin
self.VertScrollBar.Position := self.VertScrollBar.Position + -WheelDelta;
end;
VS2008 安装MVC
- 博客分类:
- C#
1、安装补丁
http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&displaylang=en
2、安装插件
http://download.microsoft.com/download/7/B/1/7B11DE4E-0247-448E-8D39-7C9B12ABA1FF/AspNetMVC2_VS2008.exe
AspNetMVC2_VS2008.exe
帮助文档:
http://msdn.microsoft.com/zh-cn/dd408814. ...
Type t = parentFrom.GetType();
object showPage = Activator.CreateInstance(t);
MethodInfo methodInfo = t.GetMethod("ShowPage");
methodInfo.Invoke(showPage,
new object[] {
...
Delphi 快捷键(转)
- 博客分类:
- delphi
Delphi 快捷键(转)
Ctrl+PageUp 将光标移至本屏的第一行,屏幕不滚动。
Ctrl+PageDown 将光标移至本屏的最后一行,屏幕不滚动。
Ctrl+↓ 向下滚动屏幕,光标跟随滚动不出本屏。
Ctrl+↑ 向上 ...
delphi 安装TQuickRep
- 博客分类:
- delphi
1、打开 菜单Component-> Install Packages...
2、点击Add...
3、选择Delphi安装目录下的Borland\Delphi7\Bin\dclqrt70.bpl
4、OK确定
在开发win ce6.0程序的时候 用SQLITE做数据存取,做“增改”操作的时候 出现“Some kind of disk I/O error occurred” 之前怀疑是system.data.sqlite.dll的问题 但当我执行查询操作的时候却可以查询出来,说明这个DLL是可以用的,定是哪里配置错了。
在网上找到
“不出意外的话应该是你没有将程序部署在模拟器的内存中而放在本地硬盘的共享空间了,如果这样就会出现I/O error ,而且只要是update或insert 就必然会I/O error。”
原文:http://topic.csdn.net/u/20090929/13/353f7 ...
try
{
String connectionString =
"Integrated Security=SSPI;Persist Security Info=False;" +
"Initial Catalog=Northwind;Data Source=localhost";
dataAdapter = new SqlDataAdapter(selectCommand, connectionString);
SqlCommand ...
1、置焦
$("#menuName_textbox").focus().select();
单选框
<input type="radio"name="state_radio" value="ENABLED" id="state_yes" checked="checked" />销售
<input type="radio" name="state_radio" value="DISABLED&qu ...
/**
* String 转换为date
* eg:format="YYYY-MM-dd hh:mm:ss";
*/
function StringToDate(remindTime){
if(remindTime==""){
return;
}
var str=remindTime.toString();
str = str.replace(/-/g,"/");
var oDate = new Date(str);
return oDate;
}
/**
* ...
API:利用开放的API,从http://xurrency.com/汇率数据并将其整合到你的网站中;允许人们利用该API查询汇率。
转换示例:http://xurrency.com/api/examples
seam实现在线用户信息的统计以及在用户IP的获取
public String getIp() {
try {
FacesContext fc = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) fc
.getExternalContext().getRequest();
return getIpAddr(request);
} catch (Exception e) {
e.printStackTrace();
return ...