摘要:在下面讨论中, 主要应用了bde的函数.
delphi 1.0 没有提供 bde 函数的帮助文件, 请参见
delphidoc 中的 dbitypes.int、 dbiprocs.int 和
dbierrs.int 三个文件; 在delphi 3.0/4.0 中可参
见 bde 帮助文件. 本文讨论的 dbf 数据库操作主要
有: 真正删除记录、显示被删 除记录、 获取当前记
录号、 ......
摘要:在windows中,为了方便文件或者文件夹的访问,我们常常为某些文件或者文件夹建立快捷方式(shortcut)。同样,在internet explorer中,我们也可以为自己喜爱的网址建立internet快捷方式(internet shortcut)。只要点击快捷方式,internet explorer就会启动,并联接到相应的网站。事实上,除了internet explorer可以创建intern......
Delphi数据库面向对象编程范例{*******************************************************}
{ } 【程序编程相关:
得到文件的版本信息程序】 【推荐阅读:
让硬盘休眠-ParkDisk程序】
{ 继承范例 } 【扩展信息:
实现高速文件拷贝】
{ }
{ }
{ 版权所有 (c) 2000,2001 真光软件 }
{*******************************************************}
unit clsperson;
{*******************************************************
项目:
模块:tperson,tteacher,tstudent
描述:oop范例类
版本:1.0
日期:2001.9.23
作者:黄洪烈
更新:2001.9.23
todo:
*******************************************************}
interface
uses
clsapplication,forms,classes,dialogs;
const
c_tblstudent=student.db;//学生类表名
c_tblteacher=teacher.db;//老师类表名
type
tperson=class(tdbrecordset)
private
ftelephone: string;
fid: string;
fname: string;
function getid: string;
function getname: string;
function gettelephone: string;
protected ...
下一页 摘要:作者: 吴淑华
delphi与windows平台紧密结合,编译代码快速高效。作为一种可视化的面向对象开发工具,delphi可以帮助程序员更轻松、更快速地编写各种windows应用程序。而且通过编程可以方便地调用其它语言编写的动态库或应用程序,并在不需要时关闭这些外部程序。这一点对许多编程人员非常有用,例如,在采用delphi进行软件开发的同时,可能需要调用以前采用其它工具开发的应用程序,以免再次......