Location:
Search - class delphi
Search list
Description: 开发环境:Delphi
简要说明:TGABase is a abstract class. You must Derivate a sub_class from it. You must override abstract function calculateFitness. By the way, this class can only get minimum solution
-development environment : Delphi Brief Description : TGABase is a abstract class. You must Derivate a sub_class from it. You must override abstract function calculateFitness. By the way, this class can only get minimum solution
Platform: |
Size: 2522 |
Author: 刘华 |
Hits:
Description: 我们老师上课用到的一些DELPHI编程实例,应该对大家有帮助的。-teacher in the class we used the Delphi programming examples, we should help.
Platform: |
Size: 443978 |
Author: 陈亮 |
Hits:
Description: RTTI(Run-Time Type Information) 翻译过来的名称是“运行期类型信息”,也就是说可以在运行期获得数据类型或类(class)的信息。
Platform: |
Size: 68608 |
Author: yeke2001@hotmail.com |
Hits:
Description: 最简单的Delphi班级管理系统-most simple Delphi class management system
Platform: |
Size: 6498304 |
Author: 看得过 |
Hits:
Description: 开发环境:Delphi
简要说明:TGABase is a abstract class. You must Derivate a sub_class from it. You must override abstract function calculateFitness. By the way, this class can only get minimum solution
-development environment : Delphi Brief Description : TGABase is a abstract class. You must Derivate a sub_class from it. You must override abstract function calculateFitness. By the way, this class can only get minimum solution
Platform: |
Size: 2048 |
Author: 刘华 |
Hits:
Description: 我们老师上课用到的一些DELPHI编程实例,应该对大家有帮助的。-teacher in the class we used the Delphi programming examples, we should help.
Platform: |
Size: 443392 |
Author: 陈亮 |
Hits:
Description: 自适应窗口控件[窗体类] resscale(Delphi)-adaptive window controls [Form Class] resscale (Delphi)
Platform: |
Size: 14336 |
Author: wen |
Hits:
Description: 《Delphi类库查询辞典》范例文件200个-"Delphi Class inquiries Dictionary," 200 examples of documents
Platform: |
Size: 1159168 |
Author: wdr |
Hits:
Description: xml delphi中读写XML文件。 例子中说明如何更加msxml类实现读xml文件,与写xml文件的方法-were read and write XML documents-xml delphi read and write XML documents. Examples on how to achieve more msxml Class Reading xml files, and write xml documents-were read and write XML documents
Platform: |
Size: 1024 |
Author: |
Hits:
Description: 1.学生成绩管理系统的设计与实现
要求有以下文档:
(1)概要设计(电子文档)
(2)详细设计(电子文档)
(3)课程设计的报告(打印文档)
选题,设计,实现,测试,参考文献
主要包括以下功能就可以了
(1)用户管理
(2)成绩的管理
查询成绩(按学号, 按班级查询, 按课程等查询)
修改学生的成绩
录入学生的成绩
删除学生成绩记录
(3)学生管理
(4)报表
(5)帮助-1. Student achievement management system Design and Implementation of the requirements have the following documents: (1) a summary of the design (electronic document) (2) the detailed design (electronic documents) (3) the curriculum design of the report (print documents) selection, design, realization of , testing, references mainly include the following features can be (1) User Management (2) performance management query results (by school number, by class inquiries, according to the course and other inquiries) to amend the scores of pupils in recording the scores of pupils in the deletion of student achievement Records (3) Student Management (4) statements (5) to help
Platform: |
Size: 2579456 |
Author: 杜明 |
Hits:
Description: 一个队列的类,可以方便的进行队列的添加,删除,查询功能!-A queue class, to facilitate the conduct of queue to add, delete, query features!
Platform: |
Size: 5120 |
Author: fox |
Hits:
Description: 下面又是翻译:
韩国人 Silhwan Hyun 改写。 TMagnetic Class 是一个 Delphi 版本的"cMagneticWnd" 类, Visual Basic "cMagneticWnd" 为 Emil Weiss 所写.
TMagnetic Class 让应用程序的每个窗体有磁性的相互粘在一起, 并可以一起拖动。
当子窗体改变尺寸大小时可以象 Winamp 的窗体一样控制对齐效果.-The following is a translation: Korean Silhwan Hyun rewritten. TMagnetic Class is a Delphi version of the " cMagneticWnd" category, Visual Basic " cMagneticWnd" for Emil Weiss wrote. TMagnetic Class allows an application form for each mutual magnetic stick together and drag together. When the sub-form can change the size of the form like Winamp as the effect of control alignment.--------------------------------------------- this category TMagnetic Supported Delphi 4/5/7/2005/2006/2007/2009 " imitate examples" are inside my head Tim foot snake draw added.
Platform: |
Size: 499712 |
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: 4096 |
Author: cxzhack |
Hits:
Description: 学校班级教学管理系统
access数据库 Delphi毕业设计指导里的文件-Schools teaching classes access the database management system designed to guide graduate Delphi documents
Platform: |
Size: 1304576 |
Author: 黄冬骅 |
Hits:
Description: 此代码由网上的Http Proxy修正而来。网上流传的Delphi版HttpProxy存在着很多问题,基本访问大部分网站都存在着各种各样问题。
该 代码在前人的基础上,进行了多处修正,基本解决了大部分问题,目前已可正常使用。
修正说明 :
1.重新封装Proxy类
2.修改正访问youhu之类的网站不正常的问题。
3.修正多处内存泄漏和资源释放错误
4.数据同步问题。-This code consists of amendments to come online Http Proxy. Delphi circulating online version of HttpProxy There are many questions, the basic access to most of the sites there are myriad problems. The code on the basis of our predecessors carried out numerous amendments basically solved most of the problems, now can be used normally. Amended statement: 1. To re-package Proxy class 2. Youhu change is visiting the site does not like a normal issue. 3. To amend various memory leaks and resource release error 4. Data synchronization problems.
Platform: |
Size: 208896 |
Author: 张三 |
Hits:
Description: IP Works Version 8 Delphi VCL Edition. A robust framework of enterprise-class controls, enabling rapid integration of any major Internet protocol or technology including: FTP, HTTP, SMTP, POP, IMAP, SNMP, LDAP, DNS, RSS, SMPP(SMS), XMPP (Jabber), SOAP, WebDav, etc.
Platform: |
Size: 2590720 |
Author: mailads |
Hits:
Description: 主要讲解类方法调用的一个实例,适合中级学习人士参考。-Mainly to explain an instance of class method calls, suitable for intermediate learners to reference.
Platform: |
Size: 173056 |
Author: 赵万旭 |
Hits:
Description: pngimage for delphi,The component by default self integrates to TPicture class when included in the main unit uses clause
Platform: |
Size: 272384 |
Author: lxx |
Hits:
Description: 1文件的新建与保存;2基本控件的实用;3对窗口与界面的设计应用;4对操作系统的开发;5制作对话框;6制作显示类应用程序;7对文件操作的开发;8数据库;9制作报表;10编程语句;11制作图形-A new file and save 2 basic control utility 3 on the window and interface design and application 4 on the operating system development 5 production of the dialog box 6 production showed class applications 7 on the development of file operations 8 database 9 production of the report 10 programming statements 11 production graphics
Platform: |
Size: 35721216 |
Author: dmsiloveyou |
Hits:
Description: DELPHI TThread 类的示例附多线程类示例带进度条 示例-DELPHI TThread class example with class example with multi-threaded progress bar example
Platform: |
Size: 181248 |
Author: huang |
Hits:
« 12
3
4
5
6
7
8
9
10
...
18
»