delphi 7
u010237107
这个作者很懒,什么都没留下…
展开
-
Delphi中TStringList类常用属性方法详解
//TStringList 常用方法与属性:var List: TStringList; i: Integer;begin List := TStringList.Create; List.Add('Strings1'); {添加} List.Add('Strings2'); List.Exchange(0,1); {置换}转载 2014-10-24 15:53:23 · 610 阅读 · 0 评论 -
delphi TTreeView
数据库结构 Create table zhibiaotb (id int primary key,name varchar(100),type int ,upid int) 首先定义 树结点的结构:TUnitNodeInfo = record ID: integer; Name: string; unitType: integer; Upid: integ转载 2014-11-12 08:28:53 · 675 阅读 · 0 评论 -
delphi idftp和idhttp控件
IDFTP1 连接远程服务器procedure Connect(AAutoLogin: boolean; const ATimeout: Integer);2 改变目录procedure ChangeDir(const ADirName: string);3 下载procedure Get(const ASourceFile: string; ADest: TStream; A转载 2014-10-28 16:32:06 · 3397 阅读 · 0 评论 -
delphi dxDBGrid使用集锦
一、如何设定可以多列自动排序? 只能使用分组:如按a1,a2,a3,a4排序 先按a1分组,再a2,再a3 然后设置a4的排列(升/降) 二、如何设定左边几列,不能滚动? 建立Band0,Band1 Band0的Fixed=tfLeft Band1的Fixed=tfnone 设置要锁定的字段的BandIndex=0,其它为1 三、如何访问,显示字段转载 2014-11-12 09:55:08 · 5769 阅读 · 0 评论