-
用Delphi开发的MP3播放器
用Delphi开发的MP3播放器-with Delphi MP3 player
- 2022-03-23 16:06:27下载
- 积分:1
-
msoaddin.zip addin 程序例子
msoaddin.zip addin 程序例子-msoaddin.zip addin procedures example
- 2022-04-22 15:33:00下载
- 积分:1
-
xueshengsushe,学生宿舍系统,具有全面的功能。
xueshengsushe,学生宿舍系统,具有全面的功能。-xueshengsushe,xueshengsushexitong.juyouquanmiandegongneng.
- 2022-04-15 12:11:24下载
- 积分:1
-
modeling of fault
modeling of fault-tolerant systems, the source
- 2022-02-12 08:51:30下载
- 积分:1
-
delphi的源代码:查找通信设备的mac地址
delphi的源代码:查找通信设备的mac地址-delphi source code : Search communications equipment mac address
- 2022-12-24 09:35:03下载
- 积分:1
-
没有什么
简单的DELPHI程序 简单的DELPHI程序 简单的DELPHI程序 -NOTHING
- 2023-02-25 22:05:03下载
- 积分:1
-
利用DELPHI 6.0软件及其提供的各种面向对象的开发工具,建立完整性强、安全性好的数据库,开发出功能完备,易使用的应用程序。经过调试、编译与实现,该程序界面...
利用DELPHI 6.0软件及其提供的各种面向对象的开发工具,建立完整性强、安全性好的数据库,开发出功能完备,易使用的应用程序。经过调试、编译与实现,该程序界面友好、程序设计风格朴素,使用起来美观大方、方便易用。尤其是系统的“信息设置模块”的功能极大的减轻工作人员的工作量,并以快速、准确等优点取代人工操作,提高了办公人员管理工作效率。-Delphi 6.0 and the use of object-oriented software development tools, the establishment of strong integrity, good safety database developed functions, easy to use applications. After debugging, Translation and the realization that the process friendly interface, simple programming style, using up aesthetic generous, convenient user-friendly. In particular system "installed module information" greatly reduce the function of the workload of staff, and rapid, accurate and advantages replace manually operated, and enhanced the efficiency of personnel management office.
- 2022-03-22 06:33:26下载
- 积分:1
-
用Delphi和access开发的成绩管理系统
用Delphi和access开发的成绩管理系统-Access development with Delphi and the performance management system
- 2022-04-21 18:48:14下载
- 积分:1
-
内存表控件 kbmMemTable
内存表控件 kbmMemTable-memory table controls kbmMemTable
- 2022-03-02 16:30:21下载
- 积分:1
-
嘿嘿,大侠看到不要见笑呀...
大家都知道使用DLL的好处.于是我就想把FORM封装到DLL里面去.
到网上找,发现是MDI和模式窗体的,非模式的也有...
嘿嘿,大侠看到不要见笑呀...
大家都知道使用DLL的好处.于是我就想把FORM封装到DLL里面去.
到网上找,发现是MDI和模式窗体的,非模式的也有很多问题.便想自己解决这个问题.
原来是用DLL创建一个对象返回,但发现有很多的问题.
想了半天就去寻根问柳吧.
找到了类.
我就想把类封装进DLL,到时简单的返回一个类,然后在主程序里操作不就简单了?
找了半天发现了TFormClass,于是试了试从DLL导出来,像一般的程序一样创建窗体发现成功.
接着我又想看看其他的类是不是也能这样,就拿TFrame来实验.
function GetDllFrameClass():TFrame stdcall
第一次是这样声明的,失败.奇怪?!
试了好多次都不行,就想到了TFormClass(Ctrl+左键),进去看看,发现是这样声明的.
TFormClass = class of TForm
哎呀,恍然大悟!!
class(TFrame) 是声明一个类, 这个类继承了TFrame类 f: TFrame 是一个对象
class of TFrame 声明的是类类型, f:TFrameClass 是一个类.
function GetDllFrameClass():TFrame
返回就不是类而是对象了,照TFormClass修改后TFrameClass = class of TFrame
运行...成功,
- 2022-01-31 01:59:09下载
- 积分:1