-
Delphi 6 Installation instructions for the Registered Source Code version of VCL...
Delphi 6 Installation instructions for the Registered Source Code version of VCLZip:
- 2022-05-22 07:52:29下载
- 积分:1
-
Delph
- 2023-08-06 17:25:03下载
- 积分:1
-
RemObjects-Pascal-Script-for-Delphi---3.0.41.791
pascal script for delphi
- 2015-04-27 22:10:03下载
- 积分:1
-
组件添加脚本功能到您的应用程序套件,包括…
Suite of components to add scripting capabilities to your applications, including Pascal & Basic scripting engines, Pascal & Basic syntax highlighting memo and script debug tools.-Suite of components to add scripting capabilities to your applications, including Pascal & Basic scripting engines, Pascal & Basic syntax highlighting memo and script debug tools.
- 2022-03-29 17:29:05下载
- 积分:1
-
用delphi编写的视频播放器,能够播放多种视频格式,且占用内存很小...
用delphi编写的视频播放器,能够播放多种视频格式,且占用内存很小-Delphi prepared to use video player that can play multiple video formats, and a small memory
- 2022-01-28 20:42:25下载
- 积分:1
-
Delphi 实现图像热点功能
Delphi 实现图像热点功能,实现一张图片上不同形状区域的热点,定义椭圆形、四边形、三角形的区域变量的热点,相关代码如下:
var
thepoint:array [1..8] of tpoint;//存储多边形顶点坐标
count:integer;
pointnum:array [1..2] of integer;
begin
//四边形顶点坐标,首末点封闭
thepoint[1]:=point(135,99);
thepoint[2]:=point(105,183);
thepoint[3]:=point(129,201);
thepoint[4]:=point(188,92);
thepoint[5]:=point(135,99);
count:=5;//四边形顶点数目,首末点为一点
fourE_rgn:=CreatePolygonRgn(thepoint,count,WINDING);//生成四边形区域
elli_rgn:=CreateEllipticRgn(64,221,231,263);// 生成椭圆形区域
//第一个三角形顶点坐标
thepoint[1]:=point(118,67);
thepoint[2]:=point(32,28);
thepoint[3]:=point(17,90);
thepoint[4]:=point(118,67);
//第二个三角形顶点坐标
thepoint[5]:=point(155,44);
thepoint[6]:=point(202,91);
thepoint[7]:=point(277,44);
thepoint[8]:=point(155,44);
pointnum[1]:=4;//第一个三角形顶点数目
pointnum[2]:=4;//第二个三角形顶点数目
count:=2;//三角形数目
//生成由两个三角形构成的三角形区域
tri_rgn:=CreatePolyPolygonRgn(thepoint,pointnum,count,WINDING);
end;
- 2022-01-26 08:02:50下载
- 积分:1
-
WebData
这是一个为友人所写的小程序, 实现了分段模糊查询, 网页生成等小功能! (This is a small program written by a friend, realize a sub-fuzzy query, the page to generate small features!)
- 2008-02-19 20:47:32下载
- 积分:1
-
TComPort componente para delphi
Componente para comunicacao serial assincrono para delphi 7 - xe
utilizando winapi, com thread, pego da pagina sourceforge.net, e
colocado aqui para obter pontos.
- 2022-01-24 14:28:52下载
- 积分:1
-
Delphi实现TdxDBTreeView节点全部展开或收拢
本源码演示如何实现Delphi TdxDBTreeView节点全部展开或收拢功能,也就是大家熟悉的树形菜单节点的折叠或展开功能,在平时的使用中,树形节点是很常用的一个菜单功能,本例子的树形菜单节点功能读取自数据库,因此在测试前请连接好数据库。
//单击全部展开按钮
procedure TForm1.Button1Click(Sender: TObject);
begin
dxDBTreeView1.FullExpand;
end;
//单击全部收拢按钮
procedure TForm1.Button2Click(Sender: TObject);
begin
dxDBTreeView1.FullCollapse;
end;
- 2022-01-26 05:17:01下载
- 积分:1
-
功能强大的科学计算器源码,包括所有进制的数值计算
功能强大的科学计算器源码,包括所有进制的数值计算-功能强大的科学计算器源码
- 2022-01-26 00:45:22下载
- 积分:1