-
Gobang source, very classic game, it can be considered a friend DELPHI beginner...
五子棋源码,非常经典的游戏,也算是初学DELPHI的朋友必须了解的东西,可以加强逻辑思维,提高编程的严密性-Gobang source, very classic game, it can be considered a friend DELPHI beginner needs to know things, can enhance critical thinking, improve the tightness of Programming
- 2023-05-17 09:50:04下载
- 积分:1
-
客服管理系统(Access版本)
delphi+Access开发,简单易学
客服管理系统(Access版本)
delphi+Access开发,简单易学-Customer Service Management System (Access version) delphi+ Access development, is easy to learn
- 2023-05-18 20:30:03下载
- 积分:1
-
delphi NT本地API单元 用delphi写rootkit方便了。
delphi NT本地API单元 用delphi写rootkit方便了。-delphi NT local API module delphi write rootkit convenient.
- 2022-02-05 09:07:18下载
- 积分:1
-
该写字板实现了基本的文字录入,字体,颜色,大小,加粗,倾斜,和文字的剪切,复制,粘贴等功能...
该写字板实现了基本的文字录入,字体,颜色,大小,加粗,倾斜,和文字的剪切,复制,粘贴等功能-The tablet to achieve the basic text input, font, color, size, bold, italic, and text cut, copy, paste and other functions
- 2022-02-06 11:07:47下载
- 积分:1
-
浏览/编辑CAD图形的控件,支持打开,浏览所有版本CAD文件,并自动识别CAD文件版本。...
浏览/编辑CAD图形的控件,支持打开,浏览所有版本CAD文件,并自动识别CAD文件版本。-View/edit CAD graphic controls, support for open, browse all versions of CAD files and automatic recognition of CAD file versions.
- 2022-05-20 12:28:03下载
- 积分:1
-
关于一个数据表的浏览器
关于一个数据表的浏览器-a browser about a data table
- 2022-08-15 16:44:17下载
- 积分:1
-
能够监视另一台机子的屏幕,并且可以在该机上执行任何操作的程序(其中有许多关于Socket编程的技巧)...
能够监视另一台机子的屏幕,并且可以在该机上执行任何操作的程序(其中有许多关于Socket编程的技巧)-surveillance to another machine screen, and the plane can carry out any operation procedures (many of which are on socket programming skills)
- 2022-02-03 12:17:58下载
- 积分:1
-
most directly in the code and Delphi6 Delphi7 operating environment. Some involv...
多数代码可以直接在Delphi6和Delphi7环境下运行。部分涉及.NET技术内容的代码,需要在Delphi 7上安装Borland .NET Complier for Delphi编译器方可编译执行。Borland已经正式推出Delphi 8 for .NET,所以本书范例中部分内容可能与D8最终版本不符。-most directly in the code and Delphi6 Delphi7 operating environment. Some involved.NET technology content of the code, the need to install Delphi 7 Borland.NET Complier for Delphi compiler can compile implementation. Borland has officially launched for Delphi 8.NET, the book example might be part of the final version D8 inconsistent.
- 2023-01-21 00:45:04下载
- 积分:1
-
一个用delphi+delphiX写的贪吃蛇程序,支持存储进度,欢迎下载,修改。
一个用delphi+delphiX写的贪吃蛇程序,支持存储进度,欢迎下载,修改。-A used delphi+ DelphiX Snake written procedures, to support the storage progress are welcome to download, modify.
- 2022-11-01 11:15: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