-
Delphigame40
说明: Delphi 编写的40个小程序,电子版的哦,多多支持(40 small program written in Delphi, the electronic version of Oh, can support)
- 2010-05-04 23:07:15下载
- 积分:1
-
gjb
陈胜点击器,最好的惦记软件,好啊.好用请推广,还不够啊(Sheng clicker, best remembered software, yes. Handy please promotion, not enough ah)
- 2013-11-04 13:11:37下载
- 积分:1
-
kbmmw是另外一个用于Internet分布式数据库开发的控件,可以用于Delphi和C++Builder...
kbmmw是另外一个用于Internet分布式数据库开发的控件,可以用于Delphi和C++Builder-kbmmw is another one for Internet development of the Distributed Database controls can be used to Delphi and C Builder
- 2023-03-08 14:10:03下载
- 积分:1
-
Delphi 打印图形(图片)
Delphi 打印图形,把图片打印出来,通过这个例子,你可以学习到:
strect:Trect;//定义打印输出矩形框的大小
temhi,temwd:integer;
begin
if DIGPrint.execute then
begin
temhi:=imgpic.picture.height;
temwd:=imgpic.picture.width;
while (temhi = printer.pageheight div 2)and
//将图形放大到打印页面的1/2大小
(temwd = printer.pagewidth div 2) do
begin
temhi:=temhi+temhi;
temwd:=temwd+temwd;
end;
with strect do //定义图形在页面上的中心位置输出
begin
left := (printer.pagewidth -temwd) div 2;
top := (printer.pageheight-temhi) div 2;
right := left+temwd;
bottom := top+temhi;
end;
with printer do
begin
begindoc;
canvas.stretchdraw(strect,imgpic.picture.graphic);
enddoc;
end;
end;
- 2022-10-24 23:35:04下载
- 积分:1
-
SQL版本传世源码
真正的传世世界SQL版源码 DEPHI 语言编写(True handed down world SQL version source code DEPHI language compilation)
- 2018-10-17 23:15:15下载
- 积分:1
-
自动适应简繁体的TBitbtn按钮,并有类似XP风格的外观
自动适应简繁体的TBitbtn按钮,并有类似XP风格的外观-Automatically adapt to the simplified and traditional TBitbtn button, and a similar appearance of XP-style
- 2022-03-22 00:02:17下载
- 积分:1
-
Delphi Socket 简单示例(Server)
Delphi Socket 网络编程简单示例(Server),Delphi 7 版本,仅供无任何Socket编程经验者参考,如有问题请与我联系
- 2022-02-03 17:14:43下载
- 积分:1
-
利用DELPHI 6.0软件及其提供的各种面向对象的开发工具,建立完整性强、安全性好的数据库,开发出功能完备,易使用的应用程序。经过调试、编译与实现,该程序界面...
利用DELPHI 6.0软件及其提供的各种面向对象的开发工具,建立完整性强、安全性好的数据库,开发出功能完备,易使用的应用程序。经过调试、编译与实现,该程序界面友好、程序设计风格朴素,使用起来美观大方、方便易用。尤其是系统的“信息设置模块”的功能极大的减轻工作人员的工作量,并以快速、准确等优点取代人工操作,提高了办公人员管理工作效率。-Delphi 6.0 and the use of object-oriented software development tools, the establishment of strong integrity, good safety database developed functions, easy to use applications. After debugging, Translation and the realization that the process friendly interface, simple programming style, using up aesthetic generous, convenient user-friendly. In particular system "installed module information" greatly reduce the function of the workload of staff, and rapid, accurate and advantages replace manually operated, and enhanced the efficiency of personnel management office.
- 2022-03-22 06:33:26下载
- 积分:1
-
Delphi 限制窗口最大化显示
Delphi 限制窗口最大化显示,当用户单击最大化按钮后,窗口稍微变大了一点,但并没有最大化,有时候,我们需要限制,不让窗口最大化,在编写实现此功能时,定义了WMGetMinMaxInfo,以下代码在函数中定义,用户操作按钮,激活函数:
with Message.MinMaxInfo^ do
begin
ptMaxSize.X := 400; //最大化时宽度
ptMaxSize.Y := 300; //最大化时高度
ptMaxPosition.X := 120; //最大化时左上角横坐标
ptMaxPosition.Y := 120; //最大化时左上角纵坐标
end;
Message.Result := 0; //通知Windows改变了minmaxinfo
- 2022-01-24 18:38:10下载
- 积分: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