登录

最新会员 最新下载

成为了本站VIP会员

05月31日 10:38

成为了本站VIP会员

05月31日 09:22

成为了本站VIP会员

05月28日 17:59

成为了本站VIP会员

05月26日 21:52

成为了本站VIP会员

05月25日 20:47

成为了本站VIP会员

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

2. CRC16的DELPHI源程序及调用子

CRC16的DELPHI源程序及调用子-CYXLIC REDUNDANCY the source and Call-

1
下载
36
浏览
2023-04-23发布

3. 功能强大和形态多样的TLabel控件,有了这个,其它的Label可以不用了,是源码,哪个版本都可以用...

功能强大和形态多样的TLabel控件,有了这个,其它的Label可以不用了,是源码,哪个版本都可以用-powerful and varied shapes of TLabel Controls With this, Label the other can not, it is source code, which can be used in version

1
下载
48
浏览
2023-04-23发布

4. DELPHI and ACTIVESYNC (to determine the connection status of mobile devices)

DELPHI与ACTIVESYNC(判断移动设备连接状态)-DELPHI and ACTIVESYNC (to determine the connection status of mobile devices)

1
下载
40
浏览
2023-04-23发布

5. IWHttpSys_Rest例子delphi源码

delphi下的IWHttpSys_Rest例子源码,希望对IW控件开发需求的人有所帮助 新的Http.sys带来的好处大致有如下一些:   1. 缓存 - 静态的内容现在被缓存于内核模式下,这使服务响应速度更快   2. 记录 (Log)-IIS的log功能更快且标准化了   3. 带宽控制 - greater scalability control and throttling   4. 可靠性 - 所有的服务请求会在Http.sys里暂存入队列,而不是由服务程序本身来处理,这样,即使服务程序重启,

1
下载
19
浏览
2023-04-22发布

6. 非常有用的学习,我个人喜欢的。没有问题你可以E。

对于学习很有帮助,我个人也很喜欢。大家有什么问题的也可以交流反馈一下。-Very useful for learning, I personally liked. That there is no problem you can exchange feedback.

1
下载
48
浏览
2023-04-22发布

7. 一个简单的宾馆住宿系统,里面的系统资源比较齐全,如果在功能上再加强的话,会更加的完善。

一个简单的宾馆住宿系统,里面的系统资源比较齐全,如果在功能上再加强的话,会更加的完善。-a simple guesthouse accommodation, inside the relatively complete system resources, if the functions further enhanced so, the more perfect.

1
下载
62
浏览
2023-04-22发布

8. Delphi 设定Windows屏幕分辨率的方法和示例代码

Delphi 设定Windows屏幕分辨率的方法和示例代码:   function TForm1.DynamicResolution(X, Y: word): BOOL;   var    lpDevMode: TDeviceMode;   begin    Result := EnumDisplaySettings(nil, 0, lpDevMode);    if Result then    begin    lpDevMode.dmFields := DM_PELSWIDTH Or DM_PELSHEIGHT;    lpDevMode.dmPelsWidth := X;    lpDevMode.dmPelsHeight := Y;    Result := ChangeDisplaySettings(lpDevMode, 0) = DISP_CHANGE_SUCCESSFUL;    end

1
下载
32
浏览
2023-04-22发布

9. 这段源码会教你用delphi调用call函数

这段源码会教你用delphi调用call函数-This source will tell you the call to call a function with delphi

1
下载
35
浏览
2023-04-21发布

10. based on the programming examples and techniques

基于c++builder5.0的编程实例与技巧-based on the programming examples and techniques

1
下载
45
浏览
2023-04-20发布

11. Windows的关闭显示器的设置时间好像最短是1分钟 而直接关显示器电源又怕伤显示器(是吗?:),于是写了这个程序...

Windows的关闭显示器的设置时间好像最短是1分钟 而直接关显示器电源又怕伤显示器(是吗?:),于是写了这个程序 -Windows display settings for the closure of the time it seems the shortest is 1 minute and directly related to the display power supply also怕伤display (is it?:), So wrote this procedure

1
下载
149
浏览
2023-04-20发布

12. Experience DELPHI master set, DELPHI collected a variety of development experien...

DELPHI 高手经验集,收集的各种DELPHI开发经验,很实用-Experience DELPHI master set, DELPHI collected a variety of development experience, it is practical

1
下载
46
浏览
2023-04-19发布

13. delphi做的类似与属性编辑器一样的控件

delphi做的类似与属性编辑器一样的控件-delphi to do similar with the same Attribute Editor Controls

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

14. 如何存储任何Oracle的记录和字段类型的tstringlist infrmat…

How to store any oracle recordset in the TStringList with the field type infrmation.

1
下载
47
浏览
2023-04-18发布

15. 源码演示Delphi 如何放大和缩小图像【图片】

源码演示Delphi 如何放大和缩小图像【图片】,我们这个例子可以学习了解如何使用Delphi编程代码,放大或缩小一张图片,这里把放大和缩小图片的基数写在按钮事件中,用户每次单击按钮,就会按照一定的缩放倍数放大或缩小图像,本示例测试图片已写入程序中,编译运行后操作并演示效果,对图像的缩放部分,重点参考以下代码:   图片缩小操作:   procedure TForm1.BitBtn1Click(Sender: TObject);   begin    if image1.Height>50 then    begin    image1.Height:=image1.Height-10;    image1.Width:=image1.Width-13;    end;   end;   图片放大操作:   procedure TForm1.BitBtn2Click(Sender: TObject);   begin    if image1.Height

1
下载
44
浏览
2023-04-18发布

16. Delphi版智能图片放大器

Delphi版智能图片放大器,用滑块改变放大倍率,向左滑,则放大位数变大,反之则变校打开程序后,鼠标在图片区域移动,即可把鼠标悬停区域的图像放大显示N倍,放大位数就是刚才提到的,滑块来调整的放大位数,部分代码可参考如下:   Const //定义放大的区域    dSide=50;//区域大小   var    sSide: Integer;//放大比例[1至100],1为最大100为缩小    msHide: Boolean;    OldX,OldY,NewX,NewY: integer;    Dest,Source: TRect;   {$R *.DFM}   Procedure TForm1.ImageFD(x,y,Side: Integer);//定义放大区域及放大过程   begin    sSide:=30; //初始化放大比例    msHide:=True;    //Canvas.CopyMode:=cmSrcCopy;    image1.Picture.Assign(image2.Picture);   end;   详细情况请下载源码后查看Unit1.pas文件。

1
下载
32
浏览
2023-04-17发布

19. 串口矩阵控制

串口通讯、矩阵控制、字符串处理!!!!!!!!!!!!!

1
下载
25
浏览
2023-04-16发布

20. 每v8.29 for D7 nrcomm lib

nrComm Lib Pro v8.29 for D7-2009 - FS-nrComm Lib Pro v8.29 for D7-2009- FS

1
下载
41
浏览
2023-04-15发布