-
delphi 画适量图 源代码
delphi 画适量图 源代码-delphi source code for drawing an appropriate diagram
- 2023-01-10 03:00:05下载
- 积分:1
-
加密spaceencryption spaceencryption空间
加密空间加密空间加密空间
- 2022-03-23 15:04:13下载
- 积分:1
-
计算机移动设备的管理工具
1、U盘的开启及禁用
2、开启与禁用所有USB设备
3、开启与禁用光驱
4、开启与禁用软驱
很简单的小工具,怡笑大...
计算机移动设备的管理工具
1、U盘的开启及禁用
2、开启与禁用所有USB设备
3、开启与禁用光驱
4、开启与禁用软驱
很简单的小工具,怡笑大方!-mobile computer equipment a management tool, U plate and the opening of two banned. Open and banned all three USB devices, and banned the opening drive 4, opened with the banned floppy drive is very simple small tools, Yue, generous laugh!
- 2022-03-03 03:57:04下载
- 积分:1
-
Winsock通信程序源码
用Delphi和Win API写的winsock通信程序,包括服务器和客户端程序所有代码,服务器初始侦听端口为8090。
希...
Winsock通信程序源码
用Delphi和Win API写的winsock通信程序,包括服务器和客户端程序所有代码,服务器初始侦听端口为8090。
希望对这方面的朋友有所帮助。-Winsock communication program and Delphi source code with Win API written in winsock communication program, including server and client program all the code, the server listening port for the initial 8090. I hope this help a friend.
- 2022-02-05 06:08:38下载
- 积分:1
-
delphi班级学习成绩统计
delphi班级学习成绩统计-Statistics
- 2022-02-28 15:02:52下载
- 积分:1
-
delphi环境美化界面用
delphi环境美化界面用 -delphi interface landscaping
- 2023-08-25 10:15:03下载
- 积分:1
-
这是一个DELPHI编写的万年历小软件里面包含了农历,这也是没有使用任何第三方空间的DELPHI 2007版编写,整理了很多东西,界面也很漂亮。欢迎使用。...
这是一个DELPHI编写的万年历小软件里面包含了农历,这也是没有使用任何第三方空间的DELPHI 2007版编写,整理了很多东西,界面也很漂亮。欢迎使用。-This is a small calendar DELPHI prepared which contains the Lunar software, which is not using any third-party space DELPHI 2007 edition of the preparation, collating a lot of things, the interface is also very beautiful. Welcome.
- 2023-02-05 06:50:04下载
- 积分:1
-
delphi 开发的自动升级源码,以网页配置文件的形式自动实现升级...
delphi 开发的自动升级源码,以网页配置文件的形式自动实现升级-delphi source code to develop an automatic upgrade to the page the form of configuration files automatically upgrade
- 2022-02-09 13:05:05下载
- 积分:1
-
I wrote it myself Delphi data type conversion function set is from an accumulati...
我自己写的Delphi下数据类型转换函数集,是多年积累而成的。-I wrote it myself Delphi data type conversion function set is from an accumulation of years.
- 2022-06-15 08:00:42下载
- 积分: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