-
delphi programming examples and help explain, which include the delphi help Chin...
delphi编程实例及帮助详解,里面包括delphi帮助的中文注解-delphi programming examples and help explain, which include the delphi help Chinese Notes
- 2022-03-16 00:44:28下载
- 积分:1
-
又一款基于数据库的Delphi图书管理系统
又一款基于数据库的Delphi图书管理系统,源代码完整供参考学习Delphi的数据库编程。
高手可在此基础上开发完善出功能更强大的图书管理系统。
本系统目前具备的功能模块有:基本信息设置、图上登记、注销及管理、读者管理、借阅管理、综合信息查询、图书登记等。
- 2023-06-04 01:55:03下载
- 积分:1
-
Delphi 7在数据库中存取图像
Delphi 7在数据库中存取图像,这个示例代码较早,面向的图像格式为BMP,JPG、GIF之类的图片格式未做测试,或许也可以。示例中将4张图片保存到数据库中,然后程序将从数据库中输出这些图片,通过程序的操作,你只需选择对应的图片,即可从数据库中读取出对应的图片。
- 2022-10-12 00:05:03下载
- 积分:1
-
图形中LAB的算法,与标准有一定差异,但使用决对没有问题,我用它开发了不少东东。...
图形中LAB的算法,与标准有一定差异,但使用决对没有问题,我用它开发了不少东东。-the algorithm, the standard is different, but decided to use no problem, I use it a lot of the Eastern Development.
- 2022-01-24 16:42:51下载
- 积分:1
-
mail2000
使用Delphi开发的邮件服务器,能安全可靠地进行电子邮件的收发服务。(Delphi developed the use of the mail server that can secure and reliable way to send and receive e-mail service.)
- 2007-10-14 11:38:15下载
- 积分:1
-
在Delphi中对用户输入的数据该如何控制?
在Delphi中对用户输入的数据该如何控制?-in Delphi on user input on how to control the data?
- 2022-06-27 16:58:52下载
- 积分:1
-
Windows 剪贴板高级编程-Delphi源码实例
Windows 剪贴板高级编程-Delphi源码实例,其实也不是什么高级编程,挺基础的剪贴板应用。学习如何在Delphi环境下读取Windows剪贴板的内容。在编写一些系统辅助类的软件中,可使用到这些小技巧。以下代码:将剪贴板内容读取出来,在代码的执行放入一个按钮事件中:
procedure TForm1.Button2Click(Sender: TObject);
var
DataRec: TDataRecord;
Data: THandle;
PData: Pointer;
begin
Data := Clipboard.GetAsHandle(CF_CUSTOMFORMAT);
if Data = 0 then Exit;
PData := GlobalLock(Data);
Move(PData^, DataRec, GlobalSize(Data));
GlobalUnlock(Data);
with DataRec do
ShowMessage(Name + #13#10 + Sex + #13#10 + Hobby);
end;
- 2022-04-22 08:40:48下载
- 积分:1
-
源码教程,介绍了delphi环境下的链表创建及操作,并在文档中介绍了与C语言中的区别。...
源码教程,介绍了delphi环境下的链表创建及操作,并在文档中介绍了与C语言中的区别。-Source Tutorials, introduced the delphi environment to create and manipulate linked lists, and in the document with the introduction of the difference between C language.
- 2022-03-12 01:45:35下载
- 积分:1
-
Delphi串口修改下:主要变化:一、支持下巴…
delphi下的COMPORT修正版:
主要修改:
1、支持终端中文显示
2、支持终端hex显示
3、去掉了抛出的部分异常
这里有很多原版的,但都没有修正中文显示。-delphi ComPort under the amended version: The main changes: one, to support Chinese display terminal 2, to support the hex display terminal 3, remove the abnormal part of the dished out here have a lot of the original, but have not amended the Chinese show.
- 2022-11-28 00:05:03下载
- 积分:1
-
delphi二维码控件源码
delphi二维码控件源码,可直接导入使用 二维码是一种快速识别编码,本程序是一款二维码控件程序
- 2022-02-07 16:47:48下载
- 积分:1