登录
首页 » DelphiԴ�� » Delphi 7.0

Delphi 7.0

于 2022-05-14 发布 文件大小:366.29 kB
0 85
下载积分: 2 下载次数: 1

代码说明:

Delphi 7.0

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Delphi 网络电话功能源代码,利用ACM组件开发
    Delphi 网络电话功能源代码,利用ACM组件开发
    2022-09-25 03:35:03下载
    积分:1
  • delphi使用pxl-v101和box2D物理引擎实现的坦克大战源代码
    delphi使用pxl-v101和box2D物理引擎实现的坦克大战源代码, 包含所有的资源文件,演示了如何使用delphi开发游戏,如果封装游戏的UI
    2023-07-19 03:35:13下载
    积分:1
  • Delphi 简单获取Windows时间的例子
    简单获取Windows时间-Delphi源代码,改时间的小程序,在Windows自带的时间管理中也可完成系统时间的修改,这个只是一个帮助了解Windows与Delphi编程的例子,如何通过Delphi的程序来修改Windows时间,大致就是这样实现的。可参见以下源码:   procedure TForm1.Button1Click(Sender: TObject);   var    Dtimer : TSystemTime;    hh,Ghh : Integer;   begin    hh := StrToInt(Trim(Edit4.Text));    if hh < 8 then    Ghh := 16 + hh    else    Ghh := hh - 8;    with Dtimer do    begin    wYear:=StrToInt(Edit1.Text);    wMonth:=StrToInt(Edit2.Text);    wDay:=StrToInt(Edit3.Text);    wHour:=Ghh;    wMinute:=StrToInt(Edit5.Text);    wSecond:=StrToInt(Edit6.Text);    end;    SetSystemTime(Dtimer);   end;
    2022-07-09 18:55:23下载
    积分:1
  • 光盘管理专家,对于网络发烧友来说,上网收集了大量的程序、软件、资料、教程,而硬盘容积最终是有限的,在CD...
    光盘管理专家,对于网络发烧友来说,上网收集了大量的程序、软件、资料、教程,而硬盘容积最终是有限的,在CD-R如此流行的今天,将其刻录成光盘无疑是一种廉价、方便的方式,但是在几十张十几吉的庞大资源中要想找出几个文件,简直如大海捞针一般。本程序正是用于光盘文件的管理,支持无限目录分类,支持多项查询、支持文件附加说明编辑等。-CD-ROM management experts, for Internet enthusiasts, the Internet to collect a large number of programs, software, information, tutorials, while the hard disk capacity is ultimately limited, in the CD-R so popular today, burn them to disc is certainly a low-cost and convenient way, but in the scores of the enormous resources of dozens of Kyrgyzstan in order to find a few files, simply as a general needle in the haystack. This procedure is used for CD-ROM file management, support for unlimited directory categories, support a number of queries, supporting documents annotated editing.
    2022-03-20 16:52:16下载
    积分:1
  • use procedures developed tray
    用delphi开发的托盘程序-use procedures developed tray
    2022-03-25 12:29:28下载
    积分:1
  • vc reference for the operation of the tool has been opened in compressed inside...
    vc的运行库参考,到开的工具已经在压缩包里面了,希望对大家有用-vc reference for the operation of the tool has been opened in compressed inside in the hope that it may be useful to
    2022-08-09 05:26:08下载
    积分:1
  • 598537
    Delphi屏幕放大镜,编程学习源码,很好的参考资料。(Delphi screen magnifier, learning programming source code, a good reference.)
    2013-12-30 20:49:31下载
    积分:1
  • 从注册表中取得CPU负荷,并计算出所占CPU的百分比。
    从注册表中取得CPU负荷,并计算出所占CPU的百分比。-Obtained from the registry CPU load, and calculate the percentage share of CPU.
    2023-05-06 02:40:03下载
    积分:1
  • 程序自动更新
    AutoUpdate是一个通过网络对软件进行自动更新的系统。可以自动根据软件的版本号、最后修改时间、文件的大小等因素自动的判断哪些文件应该,更新,那些文件,无需更新,在更新的方式上也有两种:第一是拷贝更新,即将更新文件拷贝到指定的文件夹以达到更新软件的目的,第二是通过利用InstallShield或者其他的软件做出更新发布包通过执行达到更新的目的。
    2023-08-06 23:20:04下载
    积分:1
  • Delphi 邮件短信发送自动通知系统
    Delphi 邮件短信自动通知系统,并且支持邮件发送、邮件帐户管理、类似于微软Windows中的Outlook邮件客户端的功能,可添加邮箱帐户自动收集,并在有新邮件时提示用户登录查看。本程序可发送适合到用户手机来通知邮件情况,部分功能需要依赖于硬件支持。   程序可最小化到windows托盘处显示图标,通过定义好的右键菜单来调出主窗口,虽然是一个发邮件的小程序,但是暗含的Delphi技巧有很多哦,欢迎下载源码研究学习。   1.实现邮件检测功能:   (1)注册账号,注意正确添写POP3服务器,用户名,密码。   2.实现发送短信功能:   (1)在注册账号时要添写正确的手机号码,并选中发送到手机的复选框。   (2)跟据自己购买的GSM模块说明书设置串口参数,一般是“19200,n,8,1”。   (3)添写当地短信中心号码,前面的86可加可不加,如果没有写,系统在按“确定”后会自动加上。   (4)注意:如果短信中含有中文字符,则一定要设成Pdu模式,否则短信可能发送失败。
    2023-07-27 17:40:06下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载