Blogs
尘归尘,土归土,生亦何欢,死亦何苦
Submitted by gougou on Sat, 2005-12-24 17:18 今天接到妈妈来的电话,爸爸的情况不太好了,说话已经糊涂了,医院已经告诉准备后事了.接完电话很难受,大哭了一场,可惜眼泪征服不了病魔.刚刚问了爸爸最后的心愿,他倒是一如既往的豁达,说人生没有遗憾,没有什么愿望了. 人有生故有死,只要来过,哭过笑过爱过被爱过,在这个世界上留过一点属于自己的痕迹,哪怕是一点小小的尘埃,也算是不枉来这世上走一遭了.
扩展标准Dialog
Submitted by gougou on Sun, 2005-12-11 22:09 注意,标准对话框扩展时一定要用一个TPanel作为其它控件的容器,否则会有很多古怪的事情发生.
网易真是垃圾
Submitted by gougou on Thu, 2005-12-01 23:42只许州官放屁,不许百姓传谣
Submitted by gougou on Mon, 2005-11-28 23:46 最近看了哈尔滨污染事件,政府的所作所为可以总结为一句话,只许州官放屁,不许百姓传谣.
编写vxworks的MakeFile
Submitted by gougou on Thu, 2005-11-24 10:11MakeFile文件内容如下
CPU = XXX1000 <<CPU类型
TOOL = gnu <<用gcc编译
ADDED_CFLAGS
= -g <<g表示生成用于Debug的目标文件
TARGET = target.o << 目标文件
发布Sqlite Developer 1.05 Beta1
Submitted by gougou on Sun, 2005-11-20 20:51 更新情况,这个版本主要是追加了Unicode的完善支持,同时支持UTF8和UTF16的数据编辑,同时也支持创建Unicode表和字段名。下载地址:这里
发布Sqlite Developer1.02 Alpha2
Submitted by gougou on Tue, 2005-11-08 11:181.02.75 Alpha2 (11/07/2005)
-
Fixed:Can not load ParserDll.dll on windows 2000 system.
1.02 Alpha2 (11/06/2005)
-
Fixed:[DBA] when edit table , grid shows xxx(1,2) datatype as xxx uncorrectly
-
Fixed:[Parser] can not parse create table sql with varchar, char, nchar, double ,numeric etc field type columns
-
New: [Export/Import] Import data from CSV when edit table data
-
Updated: [DBA] when pk's is autoincrement, automaticlly set Data Type to integer
- Updated: [DBA] show Db Explorer's Db or table information at status bar
-
Updated:[GUI] Add Rows Affected Information to Log
-
New: [SQL Editor] Add Save SQL and Load SQL function to SQL Editor
-
Updated: [DBA] After Creating Table, automaticlly refresh Indexes
-
Updated:[SQL Editor] now Log was displayed order by date desc
-
New: [GUI] Add Windows Menu
-
New: [Install] Add a sample sqlite3 db (Sample.db3) to install package
-
New: [DBA] Add basic clipborad operation to Data Grid
-
New: [Option] Add SQL Editor Font Option to configure the Font and Font size.
最可怕的事
Submitted by gougou on Mon, 2005-11-07 21:54 我用过最可怕的Unix类的操作系统是DEC的VMS操作系统,上面的命令给我感觉好像是咒语一样,每次敲的时候都要把参考手册翻出来,每次敲完命令都感觉恶心的要吐。
我用过的最可怕的编程语言是VB,因为没有真正的异常处理,所以你永远不会知道用VB写的程序为什么会突然当掉
调用DLL时犯了一个愚蠢的错误
Submitted by gougou on Mon, 2005-11-07 21:00昨天陈春华朋友给我写信,说他下载了我的Sqlite Developer,结果安装后无法运行,报无法加载ParserDLL.dll错误,我当时觉得很奇怪,因为我测试了一下在我的开发机器XP上没有问题,经询问才知道他的操作系统是Windows2000。今天我在Windows2000上重现了这个错误,仔细Review了一下代码,发现显式引用DLL的地方是这样写的。
const
//Fix can not load ParserDll.dll on windows 2000 system
ParserDll='ParserDll';
其中DLL扩展名没有写,这样的调用在XP系统上是正确的,但是在Windows2000系统上就会失败。