小浩@cnBlogs
--认真做好程序员
博客园
首页
新随笔
订阅
管理
<
2012年2月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
1
2
3
4
5
6
7
8
9
10
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
最新随笔
1. code-insertSort
2. .sln from VS2005 convert to VS2008
3. note-Firefox中使用event对象
4. Javascript
5. note-复制错误消息
6. 最佳组合!!!
7. note-activeX
8. VB错误处理(Classic 哈,不是.Net)
9. note-nice trick
10. what is AJAX exactly?
随笔档案
(65)
2010年6月 (1)
2010年4月 (1)
2010年3月 (7)
2010年2月 (3)
2010年1月 (2)
2009年12月 (5)
2009年10月 (6)
2009年9月 (8)
2009年8月 (17)
2009年7月 (14)
2008年8月 (1)
2010年6月1日
code-insertSort
摘要: #include "stdio.h"#define N 7int main(void){ char a[N]="824936"; int j,i; int key; for(j=2;j<N-1;j++){ key=a[j]; i=j-1; while(i>0 && key<a[i]){ a[i+1]=a[i]; /*a[i+1]=a[j]*/ --i; }...
阅读全文
posted @ 2010-06-01 10:50 qinghao 阅读(6) 评论(0)
编辑
2010年4月23日
.sln from VS2005 convert to VS2008
摘要: Change this: Microsoft Visual Studio Solution File, Format Version 9.00# Visual Studio 2005 Into this: Microsoft Visual Studio Solution File, Format Version 10.00# Visual Studio 2008
阅读全文
posted @ 2010-04-23 15:36 qinghao 阅读(14) 评论(0)
编辑
2010年3月22日
note-Firefox中使用event对象
摘要: 在这有个反面例子。。。。http://alansun.javaeye.com/blog/290702 (我都不知道,此人的代码怎么跑成功了的, 还有下面一个评论好用的。。是怎么用起了的。。。难道他们用的只用IE?当我没说。) …DOM ConstantsThese constants are the legal values of the eventPhase property; th...
阅读全文
posted @ 2010-03-22 14:57 qinghao 阅读(120) 评论(0)
编辑
2010年3月19日
Javascript
摘要: Private Members in JavaScript JavaScript is the world's most misunderstood programming language.
阅读全文
posted @ 2010-03-19 17:40 qinghao 阅读(6) 评论(0)
编辑
2010年3月18日
note-复制错误消息
摘要: 不小心看到了。 当你得到像这样的提示信息时。 点击消息窗口 CTRL+C 打开记事本CTRL+V 得: ---------------------------Microsoft Internet Explorer---------------------------ddddddddddddddddddddddddddddddddddddd---------------------------OK...
阅读全文
posted @ 2010-03-18 14:02 qinghao 阅读(6) 评论(0)
编辑
2010年3月15日
最佳组合!!!
摘要: 不说费话,看图!,
阅读全文
posted @ 2010-03-15 01:11 qinghao 阅读(22) 评论(0)
编辑
2010年3月8日
note-activeX
摘要: http://www.cppblog.com/bigsml/archive/2008/04/18/47547.html 操作MSHTML文档 通常HTML分析和浏览器自动化程序都需要分析网页的结构,找到需要操作的元素。这需要对网页的结构进行分析,找到目标元素的标识方法。 一些常用的操作包括: 设置HTML元素的属性,例如html、style、value等等。注意有些属性是只读的,甚至是程序无法访...
阅读全文
posted @ 2010-03-08 19:40 qinghao 阅读(24) 评论(0)
编辑
VB错误处理(Classic 哈,不是.Net)
摘要: On Error Resume Next 'Try Dim i : i = 1/0 '产生一个错误If Err.Number = 1 Then 'catch number = 1的错误 'doNothingEnd ifIf Err.Number = 2 Then 'catch number = 2的错误 Err.Raise Err.Number 'throwEnd ifIf Err.Number...
阅读全文
posted @ 2010-03-08 12:00 qinghao 阅读(25) 评论(0)
编辑
2010年3月2日
note-nice trick
摘要: Object.prototype.getType = function () { var ctor = this.constructor; if (typeof (ctor) != 'function') return; var reg = new RegExp(/function\ ([\w\$\_][\w\$\_\d]*)\(.*/gmi); var matches = reg.exe...
阅读全文
posted @ 2010-03-02 17:55 qinghao 阅读(5) 评论(0)
编辑
2010年2月18日
what is AJAX exactly?
摘要: who is Ajax? 特洛伊(Troy)看过没?阿伽门侬(Agamemnon)手下除了阿基里斯(Achilles, 战神,敏捷型英雄)的排行老二的那个大个(ajax,使锤的,力量型的哈)。就是那后来被赫克托(Hektor,大王子)杀了(秒杀)的那个。 what is Ajax? XMLHttpRequest + Javascript what is XMLHttpRequest ? loo...
阅读全文
posted @ 2010-02-18 15:48 qinghao 阅读(7) 评论(0)
编辑
仅列出标题
下一页
Copyright © 2009
qinghao
Powered by:
博客园