-
一款简简单单的记事本软件 简单的不能再简单了 供那些初学者用来看一看 长长见识用吧...
一款简简单单的记事本软件 简单的不能再简单了 供那些初学者用来看一看 长长见识用吧-simple one of the notebook simple software can no longer simple for beginners to those who look at it with a long exposure
- 2023-03-01 09:10:03下载
- 积分:1
-
一组个delphi按钮控件的代码,虽然比较老了,但是很实用。
一组个delphi按钮控件的代码,虽然比较老了,但是很实用。-One group of control buttons delphi code, although relatively old, but very practical.
- 2022-06-12 08:25:53下载
- 积分:1
-
Conditions increased the sum of functions, according to the conditions not to jo...
增加了条件求和功能,可按条件筛选不加入求和的记录-Conditions increased the sum of functions, according to the conditions not to join the summation filter record
- 2022-02-07 08:18:44下载
- 积分:1
-
对个人收集的图片进行管理,可以放大,缩小,另存,设置其他相关属性...
对个人收集的图片进行管理,可以放大,缩小,另存,设置其他相关属性-personal collection of photographs and management will be enlarged, reduced, Save, and the provision of other relevant attributes
- 2022-07-21 10:41:16下载
- 积分:1
-
Burn directly using Nero CD
直接使用Nero刻录光盘的delphi控件,必须先安装nero刻录软件-Burn directly using Nero CD-ROM delphi controls, you must first install the nero burning software
- 2022-03-31 23:26:06下载
- 积分:1
-
Delphi Developer s Guide to OpenGL
by Jon Q. Jacobs
The Delphi Developer s G...
Delphi Developer s Guide to OpenGL
by Jon Q. Jacobs
The Delphi Developer s Guide to OpenGL gives an outline of OpenGL--once a proprietary graphics library that used to reside only on expensive workstations--and explains its capabilities, including how to use it inside Borland s popular programming language, Delphi.
- 2022-01-26 05:48:38下载
- 积分:1
-
源代码权限管理,通用权限管理,
delphi权限管理源码,通用的权限管理,-delphi source code rights management, universal rights management,
- 2022-08-17 21:48:10下载
- 积分:1
-
超级报表系统软件VclSkin.v2.60.4.29.完整源代码版.rar
超级报表系统软件VclSkin.v2.60.4.29.完整源代码版.rar-Super statements VclSkin.v2.60.4.29 system software. Complete source code version. Rar
- 2023-09-04 21:50:03下载
- 积分:1
-
打印监控,从网上收集,喜欢的网友可以下载参考,我刚上传,是同名...
打印监控,从网上收集,喜欢的网友可以下载参考,我刚上传,是同名
- 2022-11-07 03:50: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