登录

最新会员 最新下载

成为了本站VIP会员

05月13日 14:43

成为了本站VIP会员

05月13日 10:19

成为了本站VIP会员

05月12日 14:03

成为了本站VIP会员

05月10日 21:42

成为了本站VIP会员

05月10日 16:59

成为了本站VIP会员

05月09日 16:51
已选条件
  1. 编程语言:Delphi
  2. 代码类别:所有
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. 使用DDL在Delphi项目

应用背景动态链接库DLL,或者,是一个集例程(小程序)可以被应用程序、其他DLL。像单位,DLL包含共享代码和资源,他们提供的能力,为多个应用程序共享一个常规的单拷贝他们的共同点。DLL的概念是Windows的建筑设计的核心,而大多数Windows是一个收集的DLL。关键技术当然,使用Delphi,我们可以编写和使用我们自己的DLL文件,我们可以调用与其他开发商开发的其他系统DLL函数(如 ;Visual Basic,或 ;C / C + +)。创建动态链接库下面的几行,将演示如何创建一个简单的DLL使用Delphi。对于开始Delphi和 ;选择文件 ;|新…DLL。这将创建一个 ;在编辑器窗口中的新dlltemplate。选择默认的文本和取代它的下一步。

1
下载
27
浏览
2023-03-26发布

2. 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.

1
下载
60
浏览
2023-03-26发布

3. Delphi 如何使程序不出现在任务栏上

Delphi 如何使程序不出现在任务栏上,常规情况下,运行的程序都会在任务栏有一个图标窗口,方便用户操作,不出现在任务栏上也可以,不过不太符合常规,有点隐藏程序的嫌疑,以下代码是实现此功能的:   procedure TForm1.FormCreate(Sender: TObject);   begin    with Application do    SetWindowLong(Handle,GWL_EXSTYLE,GetWindowLong(Handle,GWL_EXSTYLE) and not WS_EX_APPWINDOW or WS_EX_TOOLWINDOW);    SetWindowPos(Handle,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE or SWP_NOSIZE);   end;

1
下载
51
浏览
2023-03-26发布

4. Client/Server版本 DBISAM compiles directly into your application with no external...

Client/Server版本 DBISAM compiles directly into your application with no external libraries required. Runtime package support is also provided if so desired. It has a very small footprint and does not require any forms support in Delphi 6, C++Builder 6, and Kylix 2 and higher, which helps keep the size of non-UI applications like services or web applications to a minimum.-Client/Server edition DBISAM compiles directly into your application with no external libraries required. Runtime package support is also provided if so desired. It has a very small footprint and does not require any forms support in Delphi 6, C++Builder 6, and Kylix 2 and higher, which helps keep the size of non-UI applications like services or web applications to a minimum.

1
下载
54
浏览
2023-03-26发布

5. 100个dephi实例,希望对大家有用。

100个dephi实例,希望对大家有用。-100 Delphi example, in the hope that useful to everyone.

1
下载
65
浏览
2023-03-25发布

6. Delphi 实现窗体的全屏显示效果

Delphi 实现窗体的全屏显示效果,单击按钮后即可全屏。

1
下载
63
浏览
2023-03-25发布

9. Delphi 在图片中写入文字

在图片中写入文字(写入文字后按回车键),Delphi 图片合成 效果,图片与字符的合并,在图片中写入文字,就像PhotoShop中完成的效果,有兴趣的参考源码吧。

1
下载
52
浏览
2023-03-24发布

10. Delphi 在窗体上显示超级连接效果

Delphi7.0实现超级连接效果,在窗体上显示超级链接,这个似乎比较简单了,在网页上这是基本的功能,不过如何把一个超链接显示在窗口中,和网页上有些区别,通过这个例子你将学会如何在窗体上实现链接的显示,以及多种链接状态的自定义功能。

1
下载
51
浏览
2023-03-23发布

11. 经典的winzip压缩控件,可以方便地压缩文件

经典的winzip压缩控件,可以方便地压缩文件-Winzip classic compression controls, can be easily compressed file

1
下载
39
浏览
2023-03-23发布

12. 使用Delphi 制作无闪烁的动画效果

使用Delphi 制作无闪烁的动画效果,如何实现不闪烁的动画呢?这个例子或许能找到一些答案:部分代码如下:   var    x,i: Integer;    dir,run: Boolean;   begin    b := TBitMap.Create;    b.Width := AnimWindow.Width;    b.Height := 32;    b.Canvas.Pen.Color := clBtnFace;    b.Canvas.Brush.Color := clBtnFace;    b.Canvas.Rectangle(0,0,AnimWindow.Width,32);    run := True;    dir := False;    x := 0;    while run do    for i := 0 to AnimWindow.ImageList1.Count-1 do    begin    b.Canvas.Rectangle(0,0,AnimWindow.Width,32);    AnimWindow.ImageList1.Draw(b.Canvas,x,0,i);    Synchronize(DrawAnimPic);    Sleep(AnimWindow.SpinEdit1.Value);    if (x = 0) or (x = 300) then dir := not dir;    if dir then Inc(x) else Dec(x);    end;    b.Free;   end;

1
下载
76
浏览
2023-03-22发布

13. reconhecimento de caracteres OCR

Sistema desenvolvido EM linguagem de程序çãO O在Delphi,COM德demostrar O funionamento德嗯OCR,toytalmente desenvolvido EM Delphi,SEM尼宏类型图书馆外。

1
下载
25
浏览
2023-03-22发布

14. SpiderContainer.rar DELPHI 控件

SpiderContainer.rar DELPHI 控件 -SpiderContainer.rar DELPHI Control

1
下载
50
浏览
2023-03-22发布

18. 用于delphi开发VPN登陆器时用!初学delphi的朋友可以看看!

用于delphi开发VPN登陆器时用!初学delphi的朋友可以看看!-VPN landers for delphi development time! Delphi beginner friends can see!

1
下载
58
浏览
2023-03-18发布

19. 演示delphi在运行环境中自动生成控件的例子

演示delphi在运行环境中自动生成控件的例子-demonstration environment for the operation of the Automatic Generation Control example

1
下载
43
浏览
2023-03-18发布

20. 一个delphi的好用的画二维曲线的控件Simple Graph v2.3

一个delphi的好用的画二维曲线的控件Simple Graph v2.3 -a delphi Easy curves of the two-dimensional paintings Control Simple Graph v2.3

1
下载
53
浏览
2023-03-17发布