-
Serial CPort development control, serial port for Delphi development process, ve...
CPort串口开发控件,用于Delphi开发串口程序,版本3.10,实时性比较好-Serial CPort development control, serial port for Delphi development process, version 3.10, better real-time
- 2022-10-23 05:50:03下载
- 积分:1
-
Learn
Pascal
Sam A. Abolrous
Wordware Publishing,
The rest of the book is th...
Learn
Pascal
Sam A. Abolrous
Wordware Publishing,
The rest of the book is the most complete Delphi Pascal language reference available in print, with every language element detailed with complete syntax, examples and methods for use. The book concludes with a look at the compiler, and compiler directives discussed in depth.
- 2022-03-21 20:31:06下载
- 积分:1
-
两套ip输入的构件,各有优略,使用起来算方便
两套ip输入的构件,各有优略,使用起来算方便-two ip imported components, each has slightly superior, convenient to use operator
- 2022-01-24 15:58:22下载
- 积分:1
-
一个用于编辑功能的地址控件,可以很容易的模拟..
一个用于做IP地址编辑功能的控件,可以方便的模拟操作系统中对系统IP、网关IP、掩码等属性进行编辑的功能。-One for the editing function to do IP address control, can be easily simulated operating system on the system IP, Gateway IP, mask and other attributes for editing functions.
- 2022-02-03 21:38:28下载
- 积分:1
-
自动更新程序
自动更新程序 -Automatic Update Automatic Update
- 2022-04-24 05:45:03下载
- 积分:1
-
DELPHI线程查开启,停止源码。只允许个人学习研究
DELPHI线程查开启,停止源码。只允许个人学习研究-DELPHI thread open investigation to stop source. Allowed only individual study and research
- 2022-07-21 14:06:53下载
- 积分:1
-
This is a regular expression delphi category, if necessary, take a look at the d...
这个是正则表达式的delphi类,如有需要,就下载看看已经是最新版了-This is a regular expression delphi category, if necessary, take a look at the download is the latest version of the
- 2022-01-25 20:01:19下载
- 积分:1
-
delphi memory modify controls, can be used to create game modifications browser.
delphi内存修改控件,可
用于制作游戏修改器。-delphi memory modify controls, can be used to create game modifications browser.
- 2022-11-22 11:50:03下载
- 积分:1
-
你可以把媒体程序
you can take media with thisprogram
- 2022-05-07 21:37:58下载
- 积分: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