<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_kuku_分类_其他</title><id>http://feed.cnblogs.com/blog/u/7266/category/131296/rss</id><updated>2012-06-03T02:18:38Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/category/131296.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/7266/category/131296/rss"/><entry><id>http://www.cnblogs.com/kuku/archive/2011/11/12/2246389.html</id><title type="text">iOS UIResponder 学习笔记</title><summary type="text">在 iOS 中，一个 UIResponder 对象表示一个可以接收触摸屏上的触摸事件的对象，通俗一点的说，就是表示一个可以接收事件的对象。 iOS 中，所有显示在界面上的对象都是从 UIResponder 直接或间接继承的。 下面是 UIResponder 类的一些定义信息：触摸事件相关： 方法名称 说明 touchesBeg...</summary><published>2011-11-12T05:44:00Z</published><updated>2011-11-12T05:44:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2011/11/12/2246389.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2011/11/12/2246389.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2011/02/23/1962397.html</id><title type="text">调整分区大小的工具：Acronis Disk Director 10</title><summary type="text">Acronis Disk Director 10 是一个用来调整硬盘分区大小的小工具，可以用于 windows 7</summary><published>2011-02-23T08:09:00Z</published><updated>2011-02-23T08:09:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2011/02/23/1962397.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2011/02/23/1962397.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2011/01/13/1934501.html</id><title type="text">计算两个坐标所形成的角的角度</title><summary type="text">在 .NET 下的试算方式：doubleangleOfLine=Math.Atan2((endPoint.Y-startPoint.Y),(endPoint.X-startPoint.X))*180/Math.PI;在 javascript 下的试算方式：functiongetAngle(x1,y1,x2,y2){[代码]</summary><published>2011-01-13T05:53:00Z</published><updated>2011-01-13T05:53:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2011/01/13/1934501.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2011/01/13/1934501.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2010/12/10/1902463.html</id><title type="text">ORACLE 中为什么要把列名都转换成大写字母？</title><summary type="text">以前在使用 JAVA 开发应用程序的时候，都是使用 ORACLE 数据库，在 JAVA 中对 ORACLE 数据表进行查询返回数据后，保存在一个 Vector 列表中，每一个元素表示一行，每一行又使用 Hashtable 来表示，因为 ORACLE 把列表都转换成大写了，所以从 Hashtable 里取数据的时候，也要写成大写。如// 如果字段名是 name, 但是取数据的时候要使用 NAMEString name = row.get("NAME");最近又在做一个 JAVA 项目，改成了 JAVA + SQL SERVER， 在 SQL SERVER 里不对列名进行大写转换了，但是我还是习惯</summary><published>2010-12-10T08:29:00Z</published><updated>2010-12-10T08:29:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2010/12/10/1902463.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2010/12/10/1902463.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2010/11/30/1891750.html</id><title type="text">使用虚拟打印机提交文档的文本</title><summary type="text">最近在做一个附件的全文搜索功能，做这个功能首先要解决的问题就是把文档的文本信息全部提取出来，现在使用的是使用对文档进行编程的方式来提取文本，每种文档类型需要特别写一个程序来提取相应的文本。最近发现在在 WINDOWS 里有一个自带的虚拟打印机，把文档打印到这个打印机的时候，会生成一个文件，这个文件中的内容全是文档的文本信息。添加打印机：在打印机管理中，点击添加打印机， 在第一步中选择“...</summary><published>2010-11-30T02:24:00Z</published><updated>2010-11-30T02:24:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2010/11/30/1891750.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2010/11/30/1891750.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2010/11/03/1868143.html</id><title type="text">IE8 中自带的&amp;quot;开发人员工具&amp;quot;打不开</title><summary type="text">前段时间不知道怎么搞的，突然IE8中自带的“开发人员工具”就打不开了，按 F12， 任务栏上有“开发人员工具”，但不见窗口，如果在脚本错误的时候选择调试，那整个 IE 就死在哪里了。没了“开发人员工具” ，对调试网页和脚本来说很痛苦，这段时间搞得我又装了好几个浏览器。开始我还以为是浏览器出了问题，打算修复一下。后来在网上找了一...</summary><published>2010-11-03T07:42:00Z</published><updated>2010-11-03T07:42:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2010/11/03/1868143.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2010/11/03/1868143.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/kuku/archive/2009/11/13/1602470.html</id><title type="text">把指定的站点加到 IE 可信站点中</title><summary type="text">要把指定的站点加入到 IE 的信任站点中，需要操作注册表， IE 的可信站点保存在注册表的HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap 键下面在这个路径下面，有四个键是用来设置可信站点：DomainsRangesEscDomainsEscRangesDomains 下面是用...</summary><published>2009-11-13T05:59:00Z</published><updated>2009-11-13T05:59:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2009/11/13/1602470.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2009/11/13/1602470.html"/><content type="text">要把指定的站点加入到 IE 的信任站点中，需要操作注册表， IE 的可信站点保存在注册表的HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap 键下面在这个路径下面，有四个键是用来设置可信站点：DomainsRangesEscDomainsEscRangesDomains 下面是用...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2008/09/28/1301323.html</id><title type="text">把 doc、xls、pdf 转换为 swf 的相关工具</title><summary type="text">把 PDF 转换为 SWF 文件：1、SWFTools官方网址：http://www.swftools.org/相关介绍：http://www.blogjava.net/kissjava/archive/2008/09/26/231383.html2、FlashPaper2这是 Micromedia 公司的产品FlashPaper2令您轻易地将任何可打印的文档(Word、Excel)转换为Swf文...</summary><published>2008-09-28T03:31:00Z</published><updated>2008-09-28T03:31:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2008/09/28/1301323.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2008/09/28/1301323.html"/><content type="text">把 PDF 转换为 SWF 文件：1、SWFTools官方网址：http://www.swftools.org/相关介绍：http://www.blogjava.net/kissjava/archive/2008/09/26/231383.html2、FlashPaper2这是 Micromedia 公司的产品FlashPaper2令您轻易地将任何可打印的文档(Word、Excel)转换为Swf文...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2008/04/17/1158958.html</id><title type="text">去掉网页的边框，使其没有凹进去的效果</title><summary type="text">在开发WEB程序时，经常使用 showModalDialog 或 showModelessDialog 来显示一个对话框，显示出的对话框窗口是没有凹进去的效果，看起来就像一个 windows 程序一样，效果很不错。但在开发时，还是经常使用 window.open 来打开一个网页，这显示的效果将会有一个凹进去的边框，如下图：以后通过一行简单的 CSS 把这个凹进去的边框给去掉：html { bord...</summary><published>2008-04-17T15:23:00Z</published><updated>2008-04-17T15:23:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2008/04/17/1158958.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2008/04/17/1158958.html"/><content type="text">在开发WEB程序时，经常使用 showModalDialog 或 showModelessDialog 来显示一个对话框，显示出的对话框窗口是没有凹进去的效果，看起来就像一个 windows 程序一样，效果很不错。但在开发时，还是经常使用 window.open 来打开一个网页，这显示的效果将会有一个凹进去的边框，如下图：以后通过一行简单的 CSS 把这个凹进去的边框给去掉：html { bord...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2008/04/13/1151504.html</id><title type="text">使用 Windows Scripting Host 中的 WshShortcut 获取快捷方式的信息</title><summary type="text">Windows Scripting Host 为我们提供了一个 WshShortcut 对象，可以使用此对象来创建快捷方式或获取快捷方式的信息WshShortcut 有以下属性：TargetPath:获取或设置快捷方式指向的目标文件的路径FullName:获取或设置快捷方式的路径Description:获取或设置快捷方式的说明IconLocation:获取或设置快捷方式图标的位置WindowSty...</summary><published>2008-04-13T12:16:00Z</published><updated>2008-04-13T12:16:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2008/04/13/1151504.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2008/04/13/1151504.html"/><content type="text">Windows Scripting Host 为我们提供了一个 WshShortcut 对象，可以使用此对象来创建快捷方式或获取快捷方式的信息WshShortcut 有以下属性：TargetPath:获取或设置快捷方式指向的目标文件的路径FullName:获取或设置快捷方式的路径Description:获取或设置快捷方式的说明IconLocation:获取或设置快捷方式图标的位置WindowSty...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2008/04/13/1151361.html</id><title type="text">explorer 命令参数及其应用</title><summary type="text">看到很多应用程序可以打开一个文件夹，并自动选定某个文件，以为这样的功能实现起来可能会有点难，今天才发现在原来很简单，以下是从网上找的一篇关于 explorer 的文档：explorer.exe的命令参数及其应用我们常需要在CMD命令行下打开文件夹，除了start命令外，还可以使用explorer.exe来打开文件夹，而且有不少参数可以方便我们的操作，下面是我在微软官方网站上面找到的关于EXPLOR...</summary><published>2008-04-13T09:11:00Z</published><updated>2008-04-13T09:11:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2008/04/13/1151361.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2008/04/13/1151361.html"/><content type="text">看到很多应用程序可以打开一个文件夹，并自动选定某个文件，以为这样的功能实现起来可能会有点难，今天才发现在原来很简单，以下是从网上找的一篇关于 explorer 的文档：explorer.exe的命令参数及其应用我们常需要在CMD命令行下打开文件夹，除了start命令外，还可以使用explorer.exe来打开文件夹，而且有不少参数可以方便我们的操作，下面是我在微软官方网站上面找到的关于EXPLOR...</content></entry><entry><id>http://www.cnblogs.com/kuku/archive/2007/02/03/638720.html</id><title type="text">让记住的网络登录密码重现</title><summary type="text">局域网里面,一台WINXP的电脑登录到主机,第一次登录时要求输入用户和密码,输入在主机里设置的用户和密码后可以进入到主机了.但在输入时钩选了"记住密码"这一项.结果每次进入到主都不用输入任何东东了.现在我想用主机其它设定的用户名进入主机,怎么样才能重现密码登录的对话框呢??解决方法：方法一：在“运行”命令对话话输入 “control userpasswords2...</summary><published>2007-02-03T01:36:00Z</published><updated>2007-02-03T01:36:00Z</updated><author><name>匡匡</name><uri>http://www.cnblogs.com/kuku/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kuku/archive/2007/02/03/638720.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kuku/archive/2007/02/03/638720.html"/><content type="text">局域网里面,一台WINXP的电脑登录到主机,第一次登录时要求输入用户和密码,输入在主机里设置的用户和密码后可以进入到主机了.但在输入时钩选了"记住密码"这一项.结果每次进入到主都不用输入任何东东了.现在我想用主机其它设定的用户名进入主机,怎么样才能重现密码登录的对话框呢??解决方法：方法一：在“运行”命令对话话输入 “control userpasswords2...</content></entry></feed>
