-
ATFileNotification is a Delphi/C++Builder non
ATFileNotification is a Delphi/C++Builder non-visual component, which allows to watch for files/directories changes and to fire an event when change occurs.
It is improved version of fisFileNotification component, which was originally written by FIS House and is currently available on Torry.net. In 2006 year I could not contact FIS House about their original component, since their home site www.fishouse.com was down.
Improvements are:
Component made Unicode compatible
FileName property added: you can watch for changes in a single file
Attempt to make component thread-safe (need feedback about it)
- 2022-03-16 17:44:21下载
- 积分:1
-
sourcecode for folder to folder copy in delphi sorce
sourcecode for folder to folder copy in delphi sorce
- 2022-11-12 18:00:04下载
- 积分:1
-
support XP tray column balloon presentation tray unit. Rar
支持XP下托盘栏气球提示的托盘单元.rar-support XP tray column balloon presentation tray unit. Rar
- 2022-07-18 07:29:32下载
- 积分:1
-
delphi7,源代码
主要的是进行DELPHI7的源代码进行管理和维护
delphi7,源代码
主要的是进行DELPHI7的源代码进行管理和维护-delphi7, source code is a major Delphi7 source code management and maintenance
- 2022-07-06 23:05:53下载
- 积分:1
-
简单的电话录音源码,具备来电显示、应答、呼叫等功能。
简单的电话录音源码,具备来电显示、应答、呼叫等功能。-Simple telephone record source program with the function of Show Phone Number, answer and call.
- 2022-07-23 02:14:45下载
- 积分:1
-
一个有简单计算器的源代码,希望对新人有帮助
一个有简单计算器的源代码,希望对新人有帮助-A simple calculator source code, want to help newcomers
- 2022-03-07 05:00:33下载
- 积分:1
-
设计的微控制字体的字符位图的应用设计
application for design character bitmap useful for designing fonts in micro controllers or LCD.
Source code in delphi7
- 2022-04-23 00:27:24下载
- 积分:1
-
SinStream源码,是对Delphi流的补充,其实现方法一般,就是做成一个类的话用着方便,而且附带了ZLib自行压缩解压的功能,看来用这个做一个压缩工具也很
SinStream源码,是对Delphi流的补充,其实现方法一般,就是做成一个类的话用着方便,而且附带了ZLib自行压缩解压的功能,看来用这个做一个压缩工具也很方便了。-SinStream source is a supplementary flow Delphi, and its realization method in general, that is, create a category, then use a convenient and comes with ZLib compression decompression function on its own, it seems to do a compression to use this tool is also very convenient.
- 2023-03-26 08:55:03下载
- 积分:1
-
Module used to work with fiscal devices datecs and com library fp3530
Module used to work with fiscal devices datecs and com library fp3530
- 2022-03-11 06:33:13下载
- 积分: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