Angelo Lee's Blog
This is my kingdom .If i don't fight for it ,who will ?
上一页 1 2 3 4 5 6 7 8 9 ··· 55 下一页
摘要: About IObject Safety Extensions for Internet ExplorerDesigning Secure ActiveX ControlsSafe Initialization and Scripting for ActiveX Controls 阅读全文
posted @ 2013-01-28 20:04 Angelo Lee 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Link:Using User Defined Types in COM & ATLThe reason I got into this is that I've rarely used any help from newsgroups or similar communities. On the other hand since I've used code provided by other developers/programmers on CodeProject and CodeGuru it seemed reasonable to join a couple 阅读全文
posted @ 2013-01-26 16:26 Angelo Lee 阅读(338) 评论(0) 推荐(0) 编辑
摘要: Method 1:Link:Debugging COM and ActiveXLink:How to: Debug an ActiveX ControlStep1:Code test html.<HTML> <HEAD> <TITLE>Test ActiveX</TITLE> </HEAD> <BODY> <OBJECT ID="MyActiveX" WIDTH=800 HEIGHT=600 CLASSID="CLSID:5228A02F-8FBD-424C-B457-EEBD4E748 阅读全文
posted @ 2013-01-25 23:51 Angelo Lee 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 关于Windows下Android开发环境搭建、配置方面文章,网上一搜一堆,为方便以后参考,权且做个记录,主要关注安装过程中的注意事项。对新手提醒的是,本文介绍SDK开发Android APK环境搭建过程,开发语言面向Java的,如果您只打算做做Android上层APK应用或是Android入门,一般足够了,如果还涉及到底层接口、设备等控制操作,有可能需要安装NDK开发环境,参稍后文章。基础阅读:Android开发入门之环境概念介绍上一篇文章介绍JDK、NDK、Eclipse、ADT等概念,本文不再赘述,只说下载及安装过程。一、安装JDK(Java Development Kit)1、安装JD 阅读全文
posted @ 2013-01-24 22:14 Angelo Lee 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 其中把pdf转成swf的工具就是pdf2swf了。在命令行中运行pdf2swf src.pdf des.swf一般能满足需求。而命令行参数可以通过pdf2swf -f得到:-h , –help Print short help message and exit 打印帮助信息-V , –version Print version info and exit 打印版本号-o , –output file.swf Direct output to file.swf. If file.swf contains ‘13568621′ (file13568630.swf), then each page指 阅读全文
posted @ 2013-01-22 12:37 Angelo Lee 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 创建WinPE启动盘、常用imagex指令、常用dism指令一、创建WinPE启动盘1.准备工作下载WAIK工具:WAIK下载页面lesca使用的WAIK版本:KB3AIK_EN.isocopype.cmd [x86|amd64] c:\winpe copy winpe.wim iso\sources\boot.wim copy tools\imagex.exe winpe\iso 2.创建WinPE光盘镜像oscdimg.exe -n -bc:\winpe\etfsboot.com c:\winpe\iso c:\winpe\winpe.iso 3.从U盘或硬盘启动WinPE首先格式化U盘或 阅读全文
posted @ 2013-01-19 16:02 Angelo Lee 阅读(1446) 评论(0) 推荐(0) 编辑
摘要: 其实乱码这个问题是由系统集成的字符集引起的,由于不能正确的使用相对应字符的字符集,因此OS不能识别出文字导致了乱码。首先,我们先要知道控制Linux OS 的语言环境变量是 $LANG和$LC_ALL,要解决乱码的情况我们只需要把上述的两个变量正确设置即可.乱码分两种情况:1.终端(纯shell界面)的乱码vi /etc/profileexport LC_ALL="zh_CN.GB18030:zh_CN.GB2312:zh_CN.GBK:zh_CN:en_US.UTF-8:en_US:en:zh:zh_TW:zh_CN.BIG5"保存退出,reboot系统即可..2.X-w 阅读全文
posted @ 2013-01-19 10:31 Angelo Lee 阅读(258) 评论(0) 推荐(0) 编辑
摘要: Link:http://www.iishacks.com/2011/06/23/reduce-windows-7-winsxs-folder-size/With Windows Vista, the WinSxS folder was able to be cleaned up via a third party tool (WinSxS Lite here– Vista only!). With the initial release of Windows 7, we lost that capability – but it has since returned with Service 阅读全文
posted @ 2013-01-19 00:05 Angelo Lee 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 介绍QuartzQuartz是一个开源的任务调度系统,它能用来调度很多任务的执行。运行环境Quartz能嵌入在其他应用程序里运行。Quartz能在一个应用服务器里被实例化(或servlet容器),并且参与XA事务Quartz能独立运行(通过JVM),或者通过RMIQuartz能被集群实例化任务调度当一个指定给任务的触发器发生时,任务就被调度执行.触发器能被创建为:一天的某个时间(精确到毫秒级)一周的某些天一个月的某些天一年的某些天不在一个Calendar列出的某些天(例如工作节假日)在一个指定的次数重复重复到一个指定的时间/日期无限重复在一个间隔内重复能够给任务指定名称和组名.触发器也能够指定 阅读全文
posted @ 2013-01-16 20:08 Angelo Lee 阅读(529) 评论(0) 推荐(0) 编辑
摘要: Introduction:Quartz Official Website:http://www.quartz-scheduler.org/Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目。Quartz是一个开源的作业调度框架,它完全由Java写成,并设计用于J2SE和J2EE应用中。Quartz提供了巨大的灵活性而不牺牲简单性。你能够用它来为执行一个作业而创建简单的或复杂的调度。它有很多特征,如:数据库支持,集群,插件,EJB作业预构建,JavaMail及其它,支持cron-like表达式等等。Quartz相对于java.util.Timer和ja 阅读全文
posted @ 2013-01-15 22:14 Angelo Lee 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 55 下一页