OldHawk

菜地一块,欢迎拍砖
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页

2007年8月15日

摘要: 用法: 如我们要判断'Live.exe'程序是否正在运行/是否已经启动 if exe_is_running(Live) then .... else .... 阅读全文

posted @ 2007-08-15 11:05 OldHawk 阅读(1019) 评论(0) 推荐(0)

摘要: There are lots of neat little things that are in many of the DLLs that Microsoft has installed in Windows. Most of them are documented in the Win32 API. However, there are a lot of them that are undocumented. This article shows how to use one of the undocumented functions available in user32.dll, MessageBoxTimeOut 阅读全文

posted @ 2007-08-15 10:59 OldHawk 阅读(915) 评论(0) 推荐(0)

2007年8月14日

摘要: This program demonstrates the communication with a web server and dumps the server root page (index.htm) to the screen. 阅读全文

posted @ 2007-08-14 14:17 OldHawk 阅读(353) 评论(0) 推荐(0)

2007年8月13日

摘要: //定义网站结构 struct DOMAIN { char url[255]; //http://www.xh88.com:80/index.php 完整网址 char host[20]; //www.xh88.com 主机地址 int port; //sock 联接的端口号 }; 阅读全文

posted @ 2007-08-13 15:03 OldHawk 阅读(756) 评论(0) 推荐(0)

2007年8月10日

摘要: Introduction The OleObject property exposes the objects internal to TWebBrowser. For full details of the objects accessible see http://msdn.microsoft.com/workshop/author/dhtml/reference/objects.asp. 阅读全文

posted @ 2007-08-10 13:38 OldHawk 阅读(2246) 评论(0) 推荐(0)

摘要: 开机流程简介 1、載入 BIOS 的硬體資訊,並取得第一個開機裝置的代號; 2、讀取第一個開機裝置的 MBR 的 boot Loader (亦即是 lilo, grub, spfdisk 等等) 的開機資訊; 3、載入 Kernel 作業系統核心資訊, Kernel 開始解壓縮,並且嘗試驅動所有硬體裝置; 阅读全文

posted @ 2007-08-10 09:45 OldHawk 阅读(300) 评论(0) 推荐(0)

摘要: 帐号管理 /etc/passwd 系统帐号信息 /etc/shadow 帐号密码信息 经MD5 32位加密 在密码栏前面加『 * 』『 ! 』禁止使用某帐号 /etc/group 系统群组信息 /etc/gshadow newgrp 改变登陆组 阅读全文

posted @ 2007-08-10 09:44 OldHawk 阅读(327) 评论(0) 推荐(0)

摘要: 认识SHELL alias 显示当前所有的命令别名 alias lm="ls -al" 命令别名 unalias lm 取消命令别名 type 类似which exprot 设置或显示环境变量 阅读全文

posted @ 2007-08-10 09:42 OldHawk 阅读(460) 评论(0) 推荐(0)

摘要: vi一般用法 一般模式 编辑模式 指令模式 h 左 a,i,r,o,A,I,R,O :w 保存 j 下 进入编辑模式 :w! 强制保存 k 上 dd 删除光标当前行 :q! 不保存离开 阅读全文

posted @ 2007-08-10 09:41 OldHawk 阅读(264) 评论(0) 推荐(0)

摘要: 压缩命令: *.Z compress 程式壓縮的檔案; *.bz2 bzip2 程式壓縮的檔案; *.gz gzip 程式壓縮的檔案 阅读全文

posted @ 2007-08-10 09:39 OldHawk 阅读(226) 评论(0) 推荐(0)

摘要: 一些常用的基本命令: uname -a 查看内核版本 ls -al 显示所有文件的属性 pwd 显示当前路径 cd - 返回上一次目录 cd ~ 返回主目录 阅读全文

posted @ 2007-08-10 09:38 OldHawk 阅读(366) 评论(0) 推荐(0)

摘要: linux目录架构 / 根目录 /bin 常用的命令 binary file 的目錄 /boot 存放系统启动时必须读取的档案,包括核心 (kernel) 在内 /boot/grub/menu.lst GRUB设置 /boot/vmlinuz 内核 /boot/initrd 核心解壓縮所需 RAM Disk 阅读全文

posted @ 2007-08-10 09:37 OldHawk 阅读(312) 评论(0) 推荐(0)

2007年7月28日

摘要: 最近本人做的项目中,需要将一系列图片列表显示到一个ListBox中,本人使用的raize套件中的RzListBox,这里讲的方法同样适用于这两种组件,首先设置ListBox的style为:lbOwnerDrawVariable,然后处理ListBox的MeasureItem与DrawItem事件 阅读全文

posted @ 2007-07-28 18:20 OldHawk 阅读(2612) 评论(4) 推荐(0)

摘要: 在unreal中,有时需要根据自已的需要添加自已的定时运行的功能程序,如果你想实现这样的功能,请按照下列步骤进行,以我添加的定时检查Mysql连接情况(因为Mysql系统默认48还是多少小时后连开一个不活动的连接,如果在这个时间内,收到连接的mysql_ping消息,则该连接不会断掉) 阅读全文

posted @ 2007-07-28 18:08 OldHawk 阅读(616) 评论(0) 推荐(0)

摘要: 好久没有见到Unreal的新版本了,点这里下载 阅读全文

posted @ 2007-07-28 18:01 OldHawk 阅读(1717) 评论(1) 推荐(1)

上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页