-
一个采用delphi开的数库系统,经测试功能奇全,数据也一起上传了上来
一个采用delphi开的数库系统,经测试功能奇全,数据也一起上传了上来-Using delphi opened a few library systems, by testing the whole Qi, together with data uploaded onto
- 2023-06-22 03:45:05下载
- 积分:1
-
delphi写的一个定时关机和定时重启程序,可以实现快速关机功能...
delphi写的一个定时关机和定时重启程序,可以实现快速关机功能-delphi write a timed shutdown and restart procedures from time to time, you can achieve rapid shutdown function
- 2022-01-27 16:28:50下载
- 积分:1
-
家庭收支管理,功能有:账号管理、交易类别管理、收支记账、查询等。程序虽小但简单实用。...
家庭收支管理,功能有:账号管理、交易类别管理、收支记账、查询等。程序虽小但简单实用。-Household income and expenditure management functions are: account management, transaction type of management, balance of payments accounting, and other inquiries. Procedures may be small but simple and practical.
- 2023-06-14 14:25:24下载
- 积分:1
-
硬件设计语言的一个例子
one of example about hardware design language
- 2022-07-28 00:12:39下载
- 积分:1
-
本应用为FTP协议的文件tyransfer协议交换的转移…
this application for FTP protocol File TYransfer Protocol to exchange an transfer file in a LAN delphi code source
- 2023-08-04 18:25:02下载
- 积分:1
-
一个实现端口映射的例子,请大家试试看,但愿对要做端口映射的朋友有帮助!...
一个实现端口映射的例子,请大家试试看,但愿对要做端口映射的朋友有帮助!-An example of port mapping realize, please everyone give it a try, I hope to do port mapping has to help a friend!
- 2023-07-12 16:15:03下载
- 积分:1
-
This system is mainly divided into 11 sub
本系统主要划分为11个子模块:与操作员有关的文献刊物入库、出库、库结存和文献刊物查询,修改密码,注销,帮助等模块;与计算机管理员有关的在此基础上添加了报表打印,操作员管理,文献刊物编号管理,文献刊物出版社管理等。-This system is mainly divided into 11 sub-modules: with the operators of storage-related literature publications, a library, bank balances and documentation Publications query, modify your password, write-off to help, such as module and computer-related administrators on the basis of added Statement printing, operator management, literature publication number management, literature publishing house publications management.
- 2022-02-04 23:57:19下载
- 积分:1
-
IP输入框,IP输入框 IP输入框
IP输入框,IP输入框 IP输入框-input box IP, IP input box IP input box
- 2022-02-06 05:07:22下载
- 积分:1
-
用delphi语言实现运筹学生产与存贮问题程序
用delphi语言实现运筹学生产与存贮问题程序-with language production and storage operations research problems procedures
- 2023-04-02 01:25:03下载
- 积分: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