会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
万一的 Delphi 博客
记录学习过程中的点点滴滴,是喜欢、不是职业;记性不好,特别需要这么一个博客。
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
101
102
103
104
105
106
107
108
109
···
215
下一页
2008年10月19日
简单读取网上的文本文件
摘要: 第一步: 先把文本文件虚拟成一个 XML 文件, 譬如: 这是文本内容 第二步: 传到网上, 譬如我是放在: http://www.132435.com/down/test.txt 第三步: 用 TXMLDocument 控件读取, 只需要两行代码: unit Unit1; interface uses Windows, Messages, SysUtils, Varia...
阅读全文
posted @ 2008-10-19 21:00 万一
阅读(2680)
评论(5)
推荐(0)
编辑
2008年10月18日
VCL 中的 Windows API 函数(2): ActivateKeyboardLayout
摘要: ActivateKeyboardLayout 分别在 Controls、DBGrids、Grids 单元用到, 基本都是如下语句: ActivateKeyboardLayout(Screen.DefaultKbLayout, KLF_ACTIVATE); {表示激活当前输入法} 函数字面的意思是键盘布局, 好像键盘布局是比输入法更大的一个概念. 在 Delphi 中我们可以通过控件的 Ime...
阅读全文
posted @ 2008-10-18 21:56 万一
阅读(4015)
评论(0)
推荐(0)
编辑
VCL 中的 Windows API 函数(1): AbortDoc
摘要: AbortDoc: 该函数终止当前打印作业并删除最好一次调用 StartDoc 函数写入的所有信息. 该函数在 Printers 单元的应用: AbortDoc(Canvas.Handle);
阅读全文
posted @ 2008-10-18 11:43 万一
阅读(3528)
评论(0)
推荐(0)
编辑
2008年10月14日
复制动态数组
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure FormCr...
阅读全文
posted @ 2008-10-14 10:38 万一
阅读(6416)
评论(14)
推荐(0)
编辑
2008年9月23日
通过 SHGetSpecialFolderLocation、SHGetPathFromIDList 函数获取常用路径
摘要: 本例效果图: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Memo1: TMemo; proce...
阅读全文
posted @ 2008-09-23 17:54 万一
阅读(12392)
评论(15)
推荐(0)
编辑
2008年9月20日
几天没有来了
摘要: 还是忙着, 要到周一才能来, 所有问题暂时没时间回复, 抱歉了.
阅读全文
posted @ 2008-09-20 09:47 万一
阅读(1277)
评论(3)
推荐(0)
编辑
2008年9月17日
简单播放 mp3 - 回复 "heyongan" 的问题
摘要: 问题来源: http://www.cnblogs.com/del/archive/2008/09/17/1288772.html#1319271 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, St...
阅读全文
posted @ 2008-09-17 14:21 万一
阅读(2666)
评论(14)
推荐(0)
编辑
2008年9月11日
学习官方示例 - SysUtils.EncodeDate、EncodeTime、StrToDate、StrToTime、StrToDateTime
摘要: 代码文件: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) ListBox1: TListBox; Button1...
阅读全文
posted @ 2008-09-11 15:17 万一
阅读(10724)
评论(6)
推荐(0)
编辑
学习官方示例 - SysUtils.DecodeDate、DecodeTime
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button...
阅读全文
posted @ 2008-09-11 14:31 万一
阅读(5774)
评论(4)
推荐(0)
编辑
学习官方示例 - System.RunError
摘要: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; procedure Button...
阅读全文
posted @ 2008-09-11 14:16 万一
阅读(5001)
评论(5)
推荐(0)
编辑
上一页
1
···
101
102
103
104
105
106
107
108
109
···
215
下一页