- win2000机器出现 kernel_stack_inpage_error 的解2007-08-21 23:40:47
- 老机器配置如下:赛扬733,VIA芯片组,北桥VT82C693A,南桥VT82C686A,应该是Appllo Pro133的板子,支持133M外频,AGP 2X ,UDMA/66。显卡nVidia Geforce2 MX400。网卡AFL8139D。板载声卡。硬盘两块,主盘昆腾20.5G,
- Matrix Template Library Help2007-08-21 23:40:46
- 部分函数功能说明
- Future.AOP 一个基于Dynamic Proxy的AOP framewor2007-08-21 23:40:44
- 我
- vi编辑器的学习使用(十八)2007-08-21 23:40:42
- 我们在Vim编辑器的学习使用(二)曾学过一些基本的编辑命令,有了这样的一些基本的编辑命令,我们可以完成绝大多数的编辑任务.在这一次的学习中我们将会接触到更多的更深一些的东西.Vim编辑器有着各种不同的命令可以使得
- DataGrid 分页问题 -- 无法响应 PageIndexChanged2007-08-21 23:40:38
- 最近做网站遇到了一个奇怪的问题,在进行DataGrid进行分页时,无法响应 PageIndexChanged 事件 。我也查阅了很多关于这方面的文章,可是还是没有得到解决方案。 在和别人的探讨中发现了症结所在首先,我先将代码贴过
- Hibernate配置及数据库映射建立流程2007-08-21 23:40:37
- 搞了两天Hibernate,终于能够顺利地把流程跑下来了……
- String.Indexof 方法2007-08-21 23:40:36
- // Sample for String.IndexOf(String, Int32, Int32)// String.Indexof 方法 报告 String 在此实例中的第一个匹配项的索引或一个或多个字符的索引。using System;class Sample { public static void Main() {
- 面向对象开发范例之多态化图形操作2007-08-21 23:40:36
- /*作者:meteor135Email:meteor@mail.biti.edu.cn smith_135@163.com时间:2003.5.22*/#include <stdio.h>#include <conio.h>#include <graphics.h>#include <bios.h>#include <dos.
- Experience IN JVM GC2007-08-21 23:40:35
- GC,or Garbage Collection is an intresting things. It help developers to deal with useless Object. When We use C++, we need to think about the deconstruction method to ensure the memory not lost. But w
- My View On Refactor2007-08-21 23:40:33
- I like refactor these days.it help my code look more and more beautiful day after day. May be it is one key point in XP, it is also important in SE, with the help of TDD (Test-Driven Develop)Many peop
- Simple use on Junit2007-08-21 23:40:31
- Junit is a simple tool for test. It is easy to learn. You can find a book called Action In JUnit , but as a beginned you just need to know some basic use of it.You build a class extends TestCase, add
- rowscopy, 拷贝带有自增字段的表2007-08-21 23:40:28
- 1.清除本地数据ls_sql1 = "TRUNCATE TABLE" + ls_table [1] execute IMMEDIATE :ls_sql1 using sqlca; 2.//打开可以插入自增,显示插入自增字段的值 ls_sql1 = "SET IDENTITY_INSERT " + ls_t
- JAgileSearch to be born2007-08-21 23:40:27
- Our component JAgileSearch (JAS) to be complete.We use Lucene to develop a component to help site developers easily add a search engine to their sites.Users just need to write a jas.xml according a XM
- LFS工具链构造学习笔记2007-08-21 23:40:25
- LFS工具链构造学习笔记By Aladdin更新:发布:2005-7-29花了两天时间按照LFS-BOOK-6.1构建了LFS系统。我是新手,两天的时间确实很漫长,遇到了不少的困难和挫折,但是学习的收获也是很大的。我把自己的一些心得和体会
- 使用类方法控制实例的唯一性2007-08-21 23:40:24
- 使用类方法控制实例的唯一性
- xvid算法看到的,不太明白为什么要这样做?2007-08-21 23:40:24
- void * xvid_malloc(int size,unsigned char alignment){ unsigned char *mem_ptr; if (!alignment) { /* We have not to satisfy any alignment */ if ((mem_ptr = (unsigned char *) malloc(size + 1)) != NULL)
- 如何在把超过固定长度的文字以"……"表示2007-08-21 23:40:22
- 有次,有个以前的同事(是个小MM)问我一个问题:她想在一个网页中显示一个文章标题的列表,但是考虑到有的标题太长,影响美观,就想参照别的网站上的样式,把超过固定长度的文字用省略号代替,就像以下格式:印
- 求职面试自我介绍一分钟2007-08-21 23:40:21
- 一段短短的自我介绍,其实是为了揭开更深入的面谈而设的。 一分钟的自我介绍,犹如商品广告,在短短60秒内,针对“客户”的需要,将自己最美好的一面,毫无保留地表现出来,不但要令对方留下深刻的印象
- 强角点检测算子的Pascal实现代码2007-08-21 23:40:19
- procedure CornerDetect(sWidth, sHeight: longint; Quality: extended);var i, j, fi, fj: longint; a, b, c, sum, MinAccept, MaxEigenvalue: extended;begin FeatureCount := 0; { 下面采用Good Feature To
- 做了两天,用JNI的一点感受2007-08-21 23:40:14
- 这几天公司在搞一个与第三方的软件结合,公司让我去做。由于原来对VC不是很熟悉,所以做这个的编程痛苦指数是很高的。这里用了两种方式来做。需求是对本地文件的读取,提取里面的信息。文件是按STRUCT写进去的。所以
- 如何固定表格的标题行和标题列[原创]2007-08-21 23:40:14
- 网上有许关于固定表格的标题行的文章,但是既要固定标题行又要固定标题列的却几乎没有。现我写下如下代码以供大家参考:<html><head><title>Untitled Document</title><meta htt
- 如何设置CToolBar使每个按钮的宽度和显示的文字宽2007-08-21 23:40:13
- 关键词: CToolBar 工具栏 按钮 Button 宽度 文本原始作者: Hwycheng Leo(FlashBT@Hotmail.com)作者网站: http://www.hwysoft.com/chs/作者Blog: http://hwycheng.blogchina.com作者简介: 开发了BitTorrent下载软件 -
- IP地址的概念和作用简析2007-08-21 23:40:11
- 关键词: IP 地址 路由 网络掩码 子网掩码 网络通讯原始作者: Hwycheng Leo(FlashBT@Hotmail.com)作者网站: http://www.hwysoft.com/chs/作者Blog: http://hwycheng.blogchina.com作者简介: 开发了BitTorrent下载软件
- 《Design Patterns Explained》读书笔记(1)2007-08-21 23:40:09
- sicp习题试解 (2.32)2007-08-21 23:40:08
- ; ======================================================================;; Structure and Interpretation of Computer Programs; (trial answer to excercises);;









