论坛


2008年11月19日 星期三

炫耀。。这只是炫耀。。。

rarnu| 橙子的Delphi技术专区-delphi |18:35:00

如下图所示,别问我这是什么,也别问我要这东西。此帖只是炫耀而已,这并不是什么正当的技术,仅供我的自娱自乐。类别:delphi技术 查看评论

ListView的用法

幸福苹果| 幸福苹果-delphi |18:28:00

ListView的用法(2005-12-23 11:51:04)阅读全文类别:delphi编程 查看评论

Listview中实现点击栏目标题排序

幸福苹果| 幸福苹果-delphi |18:27:00

Listview中实现点击栏目标题排序请看下面的代码:listview的columns属性加4个列项,viewstyle属性设为vsReport,smallimage属性对应imagelist。imagelist加载图标。query1对应与parts.db表。  这段代码能实现升序排列,降序你稍作改动即可。如果是按字段数?..

设置屏幕分辨率的函数 - 回复 "董勇" 的问题

万一| 万一的 Delphi 博客 |17:14:00

{函数} function SetScreen(x,y: Word): Boolean; var DevMode: TDeviceMode; begin Result := EnumDisplaySettings(nil, 0, DevMode); if Result then begin DevMode.dmFields := DM_PELSWIDTH or DM_PELSHEIGHT; DevMode.dmPelsWidth := x; De...

获取各种编码的识别符

万一| 万一的 Delphi 博客 |16:42:00

下面是常用编码的识别符, 在 Delphi(2009) 中如何获取呢?Unicode:FF FE; BigEndianUnicode:FE FF; UTF8:EF BB BFvar bs: TBytes; b: Byte; str: string; begin {只有 Unicode、BigEndianUnicode、UTF8 编码有识别符} bs := TEncoding.Unicode.GetPreamble;...

Delphi 2005 General Update 1 / Enterprise

CodeGear| CodeGear-CodeCentral Delphi |13:59:23

<h1> Delphi 2005 Update 1 Release Notes </h1><p> This file contains important supplementary information that may not appear in the main product documentation. Borland recommends that you read this file in its entirety. </p&g...

汉字与区位码(2) - 分析

万一| 万一的 Delphi 博客 |10:41:00

//待续...[新闻]杨致远发表博客解释辞职原因博客园首页 社区 新闻频道 小组 博问 网摘 闪存

汉字与区位码(1) - 转换函数

万一| 万一的 Delphi 博客 |10:14:00

先上转换函数:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Button2: TButton; procedure Button1Click(Sender...