<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_DELPHI技术</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/12586/rss</id><updated>2005-12-09T05:08:22Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/12586/rss"/><entry><id>http://www.cnblogs.com/dingjie/archive/2005/12/09/293706.html</id><title type="text">How to get File Summary Info </title><summary type="text">How to get File Summary Info On Windows 2000 you can right-click in Explorer to get the file properties on any file and can associate summary information to any type of files, including even text file...</summary><published>2005-12-09T05:08:00Z</published><updated>2005-12-09T05:08:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/12/09/293706.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/12/09/293706.html"/><content type="text">How to get File Summary Info On Windows 2000 you can right-click in Explorer to get the file properties on any file and can associate summary information to any type of files, including even text file...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/24/283279.html</id><title type="text">动态建表(示例)</title><summary type="text">beginwith Table1 dobegin Active := False; DatabaseName := 'DOCTOR'; TableType := ttParadox; TableName := 'DOCTORINF23'; if not Table1.Exists then begin with FieldDefs do begin Clear; with AddFieldDef ...</summary><published>2005-11-24T00:58:00Z</published><updated>2005-11-24T00:58:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/24/283279.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/24/283279.html"/><content type="text">beginwith Table1 dobegin Active := False; DatabaseName := 'DOCTOR'; TableType := ttParadox; TableName := 'DOCTORINF23'; if not Table1.Exists then begin with FieldDefs do begin Clear; with AddFieldDef ...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/23/282453.html</id><title type="text">DBGridEh应用实例（来自delphi园地）</title><summary type="text">Enlib3.0组件包安装成功后，在系统的组件面板中会显示“enlib”组件包标签（如图1），添加DBGridEh到窗体的方法与其它组件一样。在窗体中添加该组件后，请跟我一起来实现图2的一些特殊效果，具体属性设置请参考属性表的说明。A、定制标题行1、制作复杂标题行 标题行可设为2行以上高度，并可以为多列创建一个共同的父标题行。为实现这个效果，需在各个列标题属性中以&amp;#82...</summary><published>2005-11-23T01:16:00Z</published><updated>2005-11-23T01:16:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/23/282453.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/23/282453.html"/><content type="text">Enlib3.0组件包安装成功后，在系统的组件面板中会显示“enlib”组件包标签（如图1），添加DBGridEh到窗体的方法与其它组件一样。在窗体中添加该组件后，请跟我一起来实现图2的一些特殊效果，具体属性设置请参考属性表的说明。A、定制标题行1、制作复杂标题行 标题行可设为2行以上高度，并可以为多列创建一个共同的父标题行。为实现这个效果，需在各个列标题属性中以&amp;#82...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/23/282440.html</id><title type="text">DBGrid、DBGrideh专题总结（来自delphi园地）</title><summary type="text">一、打印dbgrid数据：//==============================================================================//打印DBGrid中的所有数据********************************************************//=================================...</summary><published>2005-11-23T00:56:00Z</published><updated>2005-11-23T00:56:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/23/282440.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/23/282440.html"/><content type="text">一、打印dbgrid数据：//==============================================================================//打印DBGrid中的所有数据********************************************************//=================================...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/22/282165.html</id><title type="text">delphi 默认情况下参数及返回值的保存位置</title><summary type="text">delphi 默认情况下参数保存的位置：函数的第一个参数保存在eax中，第二个参数保存在edx中，第三个参数保存在ecx中， 函数的返回值经常放在eax中。</summary><published>2005-11-22T07:50:00Z</published><updated>2005-11-22T07:50:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/22/282165.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/22/282165.html"/><content type="text">delphi 默认情况下参数保存的位置：函数的第一个参数保存在eax中，第二个参数保存在edx中，第三个参数保存在ecx中， 函数的返回值经常放在eax中。</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/21/281571.html</id><title type="text">Rotating Text</title><summary type="text">procedure TForm1.Button1Click(Sender: TObject) ;var lf : TLogFont; tf : TFont;begin with Form1.Canvas do begin Font.Name := 'Arial'; Font.Size := 24; tf := TFont.Create; try tf.Assign(Font) ; GetObjec...</summary><published>2005-11-21T11:22:00Z</published><updated>2005-11-21T11:22:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/21/281571.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/21/281571.html"/><content type="text">procedure TForm1.Button1Click(Sender: TObject) ;var lf : TLogFont; tf : TFont;begin with Form1.Canvas do begin Font.Name := 'Arial'; Font.Size := 24; tf := TFont.Create; try tf.Assign(Font) ; GetObjec...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/11/21/281569.html</id><title type="text">How to Parse a Delimited String Into a String List</title><summary type="text">There are many times when you need to split a string into an array of strings by using a character as a separator. For example, a CSV ("comma" separated) file might have a line like "Zarko;Gajic;;Delp...</summary><published>2005-11-21T11:20:00Z</published><updated>2005-11-21T11:20:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/11/21/281569.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/11/21/281569.html"/><content type="text">There are many times when you need to split a string into an array of strings by using a character as a separator. For example, a CSV ("comma" separated) file might have a line like "Zarko;Gajic;;Delp...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/07/22/197966.html</id><title type="text">2005年5月20日Borland Delphi首席科学家Danny Thorpe谈Delphi的未来！</title><summary type="text">每隔10年Borland都要经过一个生死劫？！1985年Borland 发布了Turb Pascal,Borland进入了10年辉煌期。1995年Borland 成功开发了Delphi 1.0 Borland起死回生，从死亡的边缘获得了新生！2005年Borland 又一次面临生死关口：连续两季度亏损，JBuilder战线失守，Kylix出师不利！总裁被迫下课！这一次Delphi 2005还能帮助...</summary><published>2005-07-22T04:47:00Z</published><updated>2005-07-22T04:47:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/07/22/197966.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/07/22/197966.html"/><content type="text">每隔10年Borland都要经过一个生死劫？！1985年Borland 发布了Turb Pascal,Borland进入了10年辉煌期。1995年Borland 成功开发了Delphi 1.0 Borland起死回生，从死亡的边缘获得了新生！2005年Borland 又一次面临生死关口：连续两季度亏损，JBuilder战线失守，Kylix出师不利！总裁被迫下课！这一次Delphi 2005还能帮助...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/07/16/194049.html</id><title type="text">什么是BPL？在BPL中有多少单元的源代码</title><summary type="text">DFM File(main.dfm): object MainForm: TMainForm Left = 301 Top = 163 Width = 696 Height = 480 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -16 Font.Name = 'T...</summary><published>2005-07-16T07:18:00Z</published><updated>2005-07-16T07:18:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/07/16/194049.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/07/16/194049.html"/><content type="text">DFM File(main.dfm): object MainForm: TMainForm Left = 301 Top = 163 Width = 696 Height = 480 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -16 Font.Name = 'T...</content></entry><entry><id>http://www.cnblogs.com/dingjie/archive/2005/07/16/193953.html</id><title type="text">使用动态包导出函数的调用单元完整源代码</title><summary type="text">unit uMainFrm;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Mask;type TMainForm = class(TForm) btnPkgForm: TButton; medtOp1: TMaskEdit; me...</summary><published>2005-07-16T03:50:00Z</published><updated>2005-07-16T03:50:00Z</updated><author><name>DELPHI技术</name><uri>http://www.cnblogs.com/dingjie/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dingjie/archive/2005/07/16/193953.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dingjie/archive/2005/07/16/193953.html"/><content type="text">unit uMainFrm;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Mask;type TMainForm = class(TForm) btnPkgForm: TButton; medtOp1: TMaskEdit; me...</content></entry></feed>
