论坛


2009年10月26日 星期一

The Delphi Survey

Nick Hodges| Nick Hodges |05:44:14

Hey, the Delphi Survey is back!  It’s long, but well worth the time.  Please go and fill it out as completely and as thoroughly as you can.  We really read and study and use and act on the valuable information we get from it. ...

Delphi and C++Builder surveys are open

CodeGear| CodeGear-CDN Delphi |05:30:16

C to Pascal Converter 2.1.11.2009

CodeGear| CodeGear-CodeCentral Delphi |04:47:06

26/10/2009 - Update 2.1.11.2009* Number of bugs fixed* Multi-arrays properly converting,* Type definitions tables updated18/09/2009 - Update 2.18.9.2009* Number of bugs fixed* Converting record blocks* Type definitions tables updated17/07/2009 - U...

Thank You Community For The "Delphi Legends 2009 SILVER Award"

About.com| About.com Delphi Programming |03:00:38

inDelphi 2009 Community Award::I've been awarded with aSilver Delphi Helmet - Delphi Legends 2009 Community Award! A big thanks to all who voted.On October 17, 2009 a poll was posted on theWings of the Windblog. The poll presented 7 nominees for t...

2009年10月25日 星期日

语法基础: 使用不同的数据类型标记数组

万一| 万一的 Delphi 博客 |22:38:00

  阅读: 75 评论: 2 作者:万一发表于 2009-10-25 22:38原文链接unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; But...

Delphi 7 优化精简全功能版 v7.3

DELPHI盒子| Delphi盒子 |16:10:00

注:发布者很偷懒,居然让我发布4个哈哈!! 【序】 Borland是一家令人尊敬的公司,听说过有这样一句话“Borland的Delphi才是真正的Delphi",不知正确与否,也许如此吧.谨以此纪念已经仙逝的Borland,纪念逝去的经典Delphi中的经典Delphi7.本品仅供学习交流之...

快速地删除一个目录

小宇飞刀| 小宇飞刀的博客-delphi |10:54:31

以往删除目录时,都需要先用递归删干净目录下的文件和子文件夹,这样做的时候,如果文件数量大,那么删除会非常慢,于是找了个方便一点的方法,直接使用API将目录删除。代码如下:function DelDirectory(const Source: string): boolean; var    &nbs...

Create the Future: Delphi 2010 Survey

About.com| About.com Delphi Programming |04:08:44

inDelphi Future: Guide the future of Delphi: take the time to fill in the 2010 Delphi user survey. Note: have at least 30 minutes of you time to finish the survey.Click Here to take theDelphi 2010 Survey.Note: this survey is not about Delphi 201...

2009年10月24日 星期六

DBGridEH表格区填满表格线的问题[转帖]

小宇飞刀| 小宇飞刀的博客-delphi |21:58:33

这是网络上的一个转帖,本文来源:http://blog.csdn.net/Rzhghost/archive/2007/05/22/1620235.aspx表格区填满表格线的问题,修改如下(经博主实践,①内容EHLib 3.6版本,②内容在EHLib 4.1.4和4.2.16版本中均验证通过):①3.6版本中修改DBGridEh.pas单元的UpdateRow...

JSON 之 SuperObject(8): 关于乱码的几种情况 - 向 Henri Gourvest 大师报告

万一| 万一的 Delphi 博客 |21:31:00

这几天学习 JSON - SuperObject, 非常幸运地得到了其作者Henri Gourvest大师的同步指点! (Henri 大师也是 DSPack 和 GDI+ 头文件的作者; 大师是法国人, 竟能用中文给我回复, 没想到!).学习中发现 SuperObject 有些地方对中文(或者说 Unicode)支持不是所期望的, 现在?..

在Delphi如何实现模拟组合按键,如发送Ctrl_F的按键消息

小宇飞刀| 小宇飞刀的博客-delphi |21:13:15

利用 keybd_event函数可实现,如下面的代码用以实现在一个公共菜单中模拟Ctrl_F按钮以调用DBGridEH的查找对话框功能:这是在一个ActionList中的某一Action的OnExecute事件代码。procedure TDM.act_LocateExecute(Sender: TObject); var   myPopupMenu:TPop...

The Delphi 2010 Survey

Bob Swart| Dr.Bob’s Delphi Notes |12:15:44

The Delphi 2010 Survey is online, conducted by Embarcadero and the Product Management for the Delphi product.

DBGridEH点击标题自动排序的设定及排序标志相反BUG的修正

小宇飞刀| 小宇飞刀的博客-delphi |11:17:18

一、DBGridEH点击标题自动排序的设定①按DataSet源类型的不同,在工程中引用EhLib相应排序单元文件,如uses EhLibAdo,uses EhLibCDS,uses EhLibBDE、uses EhLibDBX等,我一般都会在一个公共文件中进行引用,这样就无须在所有用到DBGridEH的单元中都城加入引用语句?..

2009年10月23日 星期五

JSON 之 SuperObject(7): 可以省略的双引号

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

在 JSON 中, 字符串应该在双引号中; 从上个例子才发现: 原来这个双引号可以省略, 有空格都行当然只是在程序代码中可以省略, 对象会自动识别添加的.即如此, 下面写法都可以:uses SuperObject; procedure TForm1.Button1Click(Sender: TObject); var jo1,jo2,jo3: I...

JSON 之 SuperObject(6): 方法

万一| 万一的 Delphi 博客 |21:37:00

SuperObject 的 JSON 对象中还可以包含 "方法", 这太有意思了; 其方法的格式是:procedure Method(const This, Params: ISuperObject; var Result: ISuperObject); //另外, 这是其数据类型的枚举: TSuperType = (stNull, stBoolean, stDouble, stInt, stObject, stAr...

« 上一页

下一页 »