Location:
Search - TStringList
Search list
Description: 文本文件(txt)合并:
适合检索多个文本文件时使用(先合并多个文件然后再检索)
简单的TStringList应用举例-text (txt) : a suitable text document retrieval over the use of (merging multiple files first and then search), a simple application example TStringList
Platform: |
Size: 317216 |
Author: 阿议 |
Hits:
Description: delphi 自定义网络函数:unit net
interface
uses
sysutils
,windows
,dialogs
,winsock
,classes
,comobj
,wininet
//得到本机的局域网ip地址
function getlocalip(var localip:string): boolean
//通过ip返回机器名
function getnamebyipaddr(ipaddr: string var macname: string): boolean
//获取网络中sqlserver列表
function getsqlserverlist(var list: tstringlist): boolean
//获取网络中的所有网络类型
function getnetlist(var list: tstringlist): boolean
//获取网络中的工作组
Platform: |
Size: 92907 |
Author: orientyu |
Hits:
Description: 主要技术:
1.对常见控件的使用(如:TStrings、TStringList、Tlist)
2.数据库链接:常见的数据访问技术(ADO技术,BDE技术)
TadoConnection(数据链接)/TadoQuery(数据集)控件,
TDataModule数据模块使用, 读取配置文件
3.事件驱动编程:
窗体事件(OnActivate,OnCreate,OnShow)键盘事件(KeyPress),鼠标事件(MouseMove),定时事件(Timer)
4.动态生成组件:
在程序运行过程中,能够动态生成若干个组件(如:Button,CheckBox,TreeView)
-main technical : 1. Controls on the use of common (eg : TStrings, TStringList, Tlist) 2. Database Links : common data access technology (ADO, BDE technology) TadoConnection (data link) / TadoQuery (data sets) controls, data TDataModule modules use, read the configuration file 3. Event-driven programming : Form events (OnActivate, OnCreate, OnShow) keyboard events (KeyPress), mouse events (MouseMove), regular events (Timer) 4. Dynamic components : the procedural process, to dynamically generated a number of components (such as : Button, CheckBox, TreeView)
Platform: |
Size: 3161102 |
Author: 陈超群 |
Hits:
Description: TStringList 排序代码
代码功能: 对保存在多个 TStringList 中的数据进行排序,
支持按数字,日期,文字进行排序,
支持顺序和倒序排序,
procedure MyStringsCustomSort(var aData: TSortData SortIndex, SortType: Integer SortFlg: Bool)
//-------排列字符串组单元--------
//SortIndex 要排列的 数据行 ID
//SortType 排列类型 0 大小, 1 时间,3 文字
//SortFlg 顺序还是反序
Platform: |
Size: 209786 |
Author: 蔡瑞发 |
Hits:
Description: C++Builder版的Split函数,使用TStringList存放回传的字串阵列
Platform: |
Size: 1090 |
Author: S.G.Wu |
Hits:
Description: 这是有史以来最为经典、优秀的第三方免费元件集。它的很多优良的特性连专业的VCL元件制造厂商的产品都无法媲美。老一些的Delphi/C++Builder程序员都非常欣赏这一巨大的宝库,将这些元件用于大量的软件开发中。例如,经笔者调查,著名的Foxmail软件中就使用了RXLib元件(当然,Foxmail是Delphi开发的)。 这套元件是一套综合性元件集。它其中的内容包含:界面开发、数据库开发、系统开发、常用字符串处理函数、程序开发常用元件等。 最为经典的元件有: FormStorage:将窗体的属性、窗体上的元件的属性存储在注册表或配置文件中,当下次打开软件时,常体状态就会恢复为上次关闭软件时窗体的状态了。 RXWindowHook:能够方便的设置Windows挂钩,比调用API函数方便的多 StrHolder:相当于TStringList类,但是它是元件,因此就不用写麻烦的构造函数、解析函数了。其中的字符串可以直接写到它的属性中,作为一个字符串容器使用。 RXTrayIcon:能够使程序的图表缩到系统托盘中(system tray)。它甚至支持动态的图标。 ClipBoardViewer:能够直接查看剪贴版中的文字 RxGifAnimator:支持Gif文件动画的播放、解析、编辑 StrUtils单元中有大量的字符串处理函数可用.
Platform: |
Size: 1704020 |
Author: fengsx |
Hits:
Description: 文本文件(txt)合并:
适合检索多个文本文件时使用(先合并多个文件然后再检索)
简单的TStringList应用举例-text (txt) : a suitable text document retrieval over the use of (merging multiple files first and then search), a simple application example TStringList
Platform: |
Size: 317440 |
Author: 阿议 |
Hits:
Description: delphi 自定义网络函数:unit net
interface
uses
sysutils
,windows
,dialogs
,winsock
,classes
,comobj
,wininet
//得到本机的局域网ip地址
function getlocalip(var localip:string): boolean
//通过ip返回机器名
function getnamebyipaddr(ipaddr: string var macname: string): boolean
//获取网络中sqlserver列表
function getsqlserverlist(var list: tstringlist): boolean
//获取网络中的所有网络类型
function getnetlist(var list: tstringlist): boolean
//获取网络中的工作组-delphi custom function Network: unit net interface uses sysutils, windows, dialogs, winsock, classes, comobj, wininet// get the local ip address of the LAN function getlocalip (var localip: string): boolean// through the machine name ip return function getnamebyipaddr (ipaddr: string var macname: string): boolean// access network sqlserver list function getsqlserverlist (var list: tstringlist): boolean// access to the network all network types function getnetlist (var list: tstringlist): boolean// access network Working Group
Platform: |
Size: 92160 |
Author: orientyu |
Hits:
Description: 主要技术:
1.对常见控件的使用(如:TStrings、TStringList、Tlist)
2.数据库链接:常见的数据访问技术(ADO技术,BDE技术)
TadoConnection(数据链接)/TadoQuery(数据集)控件,
TDataModule数据模块使用, 读取配置文件
3.事件驱动编程:
窗体事件(OnActivate,OnCreate,OnShow)键盘事件(KeyPress),鼠标事件(MouseMove),定时事件(Timer)
4.动态生成组件:
在程序运行过程中,能够动态生成若干个组件(如:Button,CheckBox,TreeView)
-main technical : 1. Controls on the use of common (eg : TStrings, TStringList, Tlist) 2. Database Links : common data access technology (ADO, BDE technology) TadoConnection (data link)/TadoQuery (data sets) controls, data TDataModule modules use, read the configuration file 3. Event-driven programming : Form events (OnActivate, OnCreate, OnShow) keyboard events (KeyPress), mouse events (MouseMove), regular events (Timer) 4. Dynamic components : the procedural process, to dynamically generated a number of components (such as : Button, CheckBox, TreeView)
Platform: |
Size: 3161088 |
Author: 陈超群 |
Hits:
Description: TStringList 排序代码
代码功能: 对保存在多个 TStringList 中的数据进行排序,
支持按数字,日期,文字进行排序,
支持顺序和倒序排序,
procedure MyStringsCustomSort(var aData: TSortData SortIndex, SortType: Integer SortFlg: Bool)
//-------排列字符串组单元--------
//SortIndex 要排列的 数据行 ID
//SortType 排列类型 0 大小, 1 时间,3 文字
//SortFlg 顺序还是反序-Sort code TStringList code functions: to preserve in a number of TStringList sort data, support by the number, date, text sort, support the order and reverse order, procedure MyStringsCustomSort (var aData: TSortData SortIndex, SortType: Integer SortFlg: Bool) //------- with string--------// SortIndex group of cells arranged in rows of data to ID// SortType with type 0 size, 1 time, 3 text// SortFlg order or anti- Preface
Platform: |
Size: 209920 |
Author: 蔡瑞发 |
Hits:
Description: C++Builder版的Split函数,使用TStringList存放回传的字串阵列-C++ Builder version of the Split function, the use of stored TStringList return string array
Platform: |
Size: 1024 |
Author: S.G.Wu |
Hits:
Description:
Platform: |
Size: 6144 |
Author: raytec |
Hits:
Description: TELNET 对远程主机进行TELNET.- CurrResult: String
CmdInfos: TStringList
CreateTime: TDateTime
//登陆
function LoginHost(AsHostIp:string AsHostPort:integer
AsUserId: string AsPassWord: string): string
//发送命令
function SendCmd(const AsCommond: String AsExpectVal: String=
AsExpectErr: String= ): string
constructor Create(AOwner: TComponent) override
destructor Destroy override
property OnRevStr: TIdTelnetDataAvailEvent read FOnRevStr write FOnRevStr
procedure IdTelnetDataAvailable(Sender: TIdTelnet const Buffer: String)
Platform: |
Size: 220160 |
Author: 陈笛 |
Hits:
Description: VMProtect 简介
VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。
支持的编译器:
Delphi
Borland C Builder
Visual C/C++
Visual Basic (native)
Virtual Pascal
支持的文件类型(32 位和 64 位):
EXE
DLL
BPL
OCX
SYS
支持的操作系统:
Windows 95/98
Windows ME
Windows NT
Windows 2000
Windows XP
Windows 2003
Windows Vista-标准类
TObject = class
constructor Create
procedure Free
end
TPersistent = class(TObject)
procedure Assign(Source: TPersistent)
end
TStrings = class(TPersistent)
function Add(S: String): Integer
procedure Append(S: String)
procedure AddStrings(Strings: TStrings)
procedure Clear
procedure Delete(Index: Integer)
function IndexOf(const S: String): Integer
procedure Insert(Index: Integer S: String)
procedure LoadFromFile(FileName: String)
procedure SaveToFile(FileName: String)
property Count: Integer read
property Text: String read write
property CommaText: String read write
property Strings[Index: Integer]: String read write
property Objects[Index: Integer]: TObject read write
end
TDuplicates = (dupIgnore, dupAccept, dupError)
TNotifyEvent = procedure(Sender: TObject)
TStringList = class(TStrings)
function Find(S: String var Index: Integer): Boolean
procedure Sort
property Duplicates:
Platform: |
Size: 16384 |
Author: cxzhack |
Hits:
Description: VMProtect 简介
VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。
支持的编译器:
Delphi
Borland C Builder
Visual C/C++
Visual Basic (native)
Virtual Pascal
支持的文件类型(32 位和 64 位):
EXE
DLL
BPL
OCX
SYS
支持的操作系统:
Windows 95/98
Windows ME
Windows NT
Windows 2000
Windows XP
Windows 2003
Windows Vista
-标准类
TObject = class
constructor Create
procedure Free
end
TPersistent = class(TObject)
procedure Assign(Source: TPersistent)
end
TStrings = class(TPersistent)
function Add(S: String): Integer
procedure Append(S: String)
procedure AddStrings(Strings: TStrings)
procedure Clear
procedure Delete(Index: Integer)
function IndexOf(const S: String): Integer
procedure Insert(Index: Integer S: String)
procedure LoadFromFile(FileName: String)
procedure SaveToFile(FileName: String)
property Count: Integer read
property Text: String read write
property CommaText: String read write
property Strings[Index: Integer]: String read write
property Objects[Index: Integer]: TObject read write
end
TDuplicates = (dupIgnore, dupAccept, dupError)
TNotifyEvent = procedure(Sender: TObject)
TStringList = class(TStrings)
function Find(S: String var Index: Integer): Boolean
procedure Sort
property Duplicates:
Platform: |
Size: 4096 |
Author: cxzhack |
Hits:
Description: VMProtect 简介
VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。
支持的编译器:
Delphi
Borland C Builder
Visual C/C++
Visual Basic (native)
Virtual Pascal
支持的文件类型(32 位和 64 位):
EXE
DLL
BPL
OCX
SYS
支持的操作系统:
Windows 95/98
Windows ME
Windows NT
Windows 2000
Windows XP
Windows 2003
Windows Vista
-TObject = class
constructor Create
procedure Free
end
TPersistent = class(TObject)
procedure Assign(Source: TPersistent)
end
TStrings = class(TPersistent)
function Add(S: String): Integer
procedure Append(S: String)
procedure AddStrings(Strings: TStrings)
procedure Clear
procedure Delete(Index: Integer)
function IndexOf(const S: String): Integer
procedure Insert(Index: Integer S: String)
procedure LoadFromFile(FileName: String)
procedure SaveToFile(FileName: String)
property Count: Integer read
property Text: String read write
property CommaText: String read write
property Strings[Index: Integer]: String read write
property Objects[Index: Integer]: TObject read write
end
TDuplicates = (dupIgnore, dupAccept, dupError)
TNotifyEvent = procedure(Sender: TObject)
TStringList = class(TStrings)
function Find(S: String var Index: Integer): Boolean
procedure Sort
property Duplicates: TDup
Platform: |
Size: 4096 |
Author: cxzhack |
Hits:
Description: VMProtect 简介
VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。
支持的编译器:
Delphi
Borland C Builder
Visual C/C++
Visual Basic (native)
Virtual Pascal
支持的文件类型(32 位和 64 位):
EXE
DLL
BPL
OCX
SYS
支持的操作系统:
Windows 95/98
Windows ME
Windows NT
Windows 2000
Windows XP
Windows 2003
Windows Vista
-TObject = class
constructor Create
procedure Free
end
TPersistent = class(TObject)
procedure Assign(Source: TPersistent)
end
TStrings = class(TPersistent)
function Add(S: String): Integer
procedure Append(S: String)
procedure AddStrings(Strings: TStrings)
procedure Clear
procedure Delete(Index: Integer)
function IndexOf(const S: String): Integer
procedure Insert(Index: Integer S: String)
procedure LoadFromFile(FileName: String)
procedure SaveToFile(FileName: String)
property Count: Integer read
property Text: String read write
property CommaText: String read write
property Strings[Index: Integer]: String read write
property Objects[Index: Integer]: TObject read write
end
TDuplicates = (dupIgnore, dupAccept, dupError)
TNotifyEvent = procedure(Sender: TObject)
TStringList = class(TStrings)
function Find(S: String var Index: Integer): Boolean
procedure Sort
property Duplicates: TDup
Platform: |
Size: 4096 |
Author: cxzhack |
Hits:
Description: VMProtect 简介
VMProtect 是新一代的软件保护系统,不像其它常见的保护系统,VMProtect 可以修改应用程序的源代码。VMProtect 将原文件的部分代码转换为在虚拟机中运行的字节码。您可以将虚拟机想像成带有不同于 Intel 8086 处理器指令系统的虚拟处理器;例如,虚拟机没有比较两个操作数的指令,也没有条件跳转和无条件跳转等。
支持的编译器:
Delphi
Borland C Builder
Visual C/C++
Visual Basic (native)
Virtual Pascal
支持的文件类型(32 位和 64 位):
EXE
DLL
BPL
OCX
SYS
支持的操作系统:
Windows 95/98
Windows ME
Windows NT
Windows 2000
Windows XP
Windows 2003
Windows Vista
--------------------------------------------------------------------------------
© 2006-2008 Copyright PolyTech-标准类
TObject = class
constructor Create
procedure Free
end
TPersistent = class(TObject)
procedure Assign(Source: TPersistent)
end
TStrings = class(TPersistent)
function Add(S: String): Integer
procedure Append(S: String)
procedure AddStrings(Strings: TStrings)
procedure Clear
procedure Delete(Index: Integer)
function IndexOf(const S: String): Integer
procedure Insert(Index: Integer S: String)
procedure LoadFromFile(FileName: String)
procedure SaveToFile(FileName: String)
property Count: Integer read
property Text: String read write
property CommaText: String read write
property Strings[Index: Integer]: String read write
property Objects[Index: Integer]: TObject read write
end
TDuplicates = (dupIgnore, dupAccept, dupError)
TNotifyEvent = procedure(Sender: TObject)
TStringList = class(TStrings)
function Find(S: String var Index: Integer): Boolean
procedure Sort
property Duplicates:
Platform: |
Size: 2048 |
Author: cxzhack |
Hits:
Description: A simple five page editor that prints.
Printing all or a range of pages using TPrinter
Querying the user with TPrintDialog
Using TStringList to manage text for multiple pages
TTabSet, TPanel, TMemo, TSpeedButton
Platform: |
Size: 2410496 |
Author: croms |
Hits:
Description: delphi TStringList ,TStings,TLIST
的替换单元。
高效率。-delphi TStringList, TStings, TLIST
Replacement unit.
High efficiency.
Platform: |
Size: 5120 |
Author: 陈日月 |
Hits: