DELPHI 自动升级组件 AutoUpgrader Pro v4.64

border="0" name="I1" align="middle" marginwidth="1" marginheight="1" src="http://www.b199.cn/blog_ads/Google_336_280.htm" frameborder="0" width="336" scrolling="no" height="280">

         一款用于Delphi5, Delphi6, Delphi7, Delphi2005, Delphi2006,BCB让自己写的程序具备自动升级功能的组件,Advanced AutoUpgrader组件用于使软件具有自动升级功能,内建“自动更新向导”,多语言支持(自动识别语言),目前可自动将向导翻译成25种语言:英、西、德、法、俄、葡、意、荷、丹、芬、中,等等。支持升级时的用户名/密码。另外还有auHTTP(支持文件上传、IE缓存)、auThread(用于 D6、7的线程组件)附加包。

 

 


下载地址如下:

http://dl2.csdn.net/down4/20070630/30094943491.rar
http://www.delphifans.com/SoftView/SoftView_2180.html

搜索其它相关资源,请用Google搜索:

style="WIDTH: 457px; HEIGHT: 34px" border="0" name="I1" align="middle" marginwidth="1" marginheight="1" src="http://www.b199.cn/blog_ads/Google_search_40.htm" frameborder="0" width="460" scrolling="no" height="40">

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
自動更新插件。 AutoUpgrader is a component for building software updates. Delphi programmers can use this component to create their own software packages without writing a single line of code, which includes ready-made wizards that can be activated for different purposes, as well as multiple languages ​​for the application interface. It uses updates and the interesting feature is that when the end user runs the update software, the application will recognize the user’s current operating system language and display the application’s interface in the same language. This component currently translates all wizards into 13 different languages, including English, Spanish, German, French, Russian, Portuguese, Italian, Chinese and more. Of course, if you are not interested in using the program’s pre-installed wizards, you can easily design an ambient wizard with your own texts and images for the entire process. If you have installed a new version of your application in the encrypted web directory, you can do so by configuring the username and password of access files, or allow this component to be displayed to the user when the login window needs it. And users can access the app by entering the appropriate username and password. With AutoUpgrader end users of your app will always use the latest version of your products. This package consists of two components, one HTTP web / HTTP based HTTP protocol (which supports upload and cache IE and …) and another acThread, a threaded caponity for use on ActiveFirms. Delphi programmers, with this component no longer need a basic design of update programs, and can focus on the logic of their program, such as updating the program to components such as AutoUpgrader.
Delphi程序的自动升级功能的实现(AutoUpdate使用指南) 在UtiMnid组件下,利用auAutoUpgrader实现自动升级(已经测试通过) 第一步:下载AutoUpgrader.Pro.v4.6.4。 第二步:打开AutoUpgrader.Pro.v4.6.4下面的Delphi7目录,双击AutoUpgraderProD7.package文件安装,点install,安装。完成后,在工具面板上增加了一个UtiMnid组件。然后将Delphi7目录下面的全部文件都复制到delphi7的安装目录下面的bin目录中。 第一次发布程序时要做的事。 1、在已开发完成的程序中,在第一个启动的窗体上,放一个TauAutoUpgrader控件。 2.双击auAutoUpgrader1,在弹出的对话框中做以下设置: (1)选择ByNumer,按版本号检查更新,在Numer文本框中填好程序版本号。注意,程序版本号的格式一定要是如:1.0.0.1这种格式,否则会出错。 (2)单击add按钮,添加本次升级文件的http下载地址,格式如:http://192.168.1.104:8080/update/project1.exe,千万别写错了。AutoUpgrader只支持http方式。不要填错。Upgrade method默认;可以在“Release Notes Message”里面写上本次的更新内容; (3)单击“Export to info-file”按钮,输入文件名,生成一个后缀为.inf的配置文件,然后将这个配置文件上传到你的网站,和升级文件放在同一个目录,如http://192.168.1.104:8080/update。 (4)在auAutoUpgrader1控件的InfoFileURL属性里,输入你的网站里的那个inf文件,假如文件名为aa.inf,那么属性里的值就应该是http://192.168.1.104:8080/update/aa.inf,这儿也千万别搞错了。因为程序升级是靠这个文件来断定是否升级。 (5)把auAutoUpgrader1的autocheck设为true。 (6)自动检查并提示升级:方法是:在第一个启动窗体上,添加以下代码: procedure TForm1.FormCreate(Sender: TObject); begin auAutoUpgrader1.CheckUpdate(true);//实际上就只加这一句。 end; (7)手动升级:方法是,窗体上放一个按钮button,属性为“检查更新”,在按钮的onclick事件里面写上auAutoUpgrader1.CheckUpdate(False); (8):在网站上建目录和端口设置。 必须和程序开发中设置的目录一致,否则升级时找不到文件。如开发中的目录是http://192.168.1.104:8080/update,那么网站上就必须设置update目录。还有一点,网站的端口也必须是8080。 (9):将升级文件和配置文件放在网站上已设置好的目录中,例如:update目录。如果文件很多,分不清哪些是升级的,哪些不是的,就全部放进去吧。呵呵。。反正现在硬盘够大了。如果你能分清楚就更好。 修改客户端后,怎么升级处理? 如果你的客户端因业务需要而需要进行修改,那么应在修改完成后,进行下面的修改和处理,才能实现自动升级。 1、对auAutoUpgrader1的修改。双击打开,修改ByNumer的版本号。注意必须比上一次的号高。如上一次是1.0.0.1,那么这一次就应该是1.0.0.2。 2、单击“Export to info-file”按钮,输入与开发时相同的文件名,生成一个后缀为.inf的配置文件,然后将这个配置文件上传到你的网站,和升级文件放在同一个目录,如 3、点OK按钮,然后全部保存Delphi文件,然后编译运行。 4、将新生成的配置文件和全部编译后的Delphi文件复制到网站上指定的目录中,例如http://192.168.1.104:8080/update。覆盖以前的文件。注意:这时不用打包。因为这儿需要的不是打包的程序文件,而是打包之前的散件(未打包的文件)。 5、OK。 6、以后的升级都如法炮制了。
2. Installation ---------------------------------------------------- to Borland Developer Studio 2006 ================================ 1. Create "..\Lib\AutoUpgraderPro" directory. 2. Unzip files and copy them to "BDS\Lib\AutoUpgraderPro". 3. Start Borland Developer Studio 2006 IDE (do not start C++ Builder, even if you want to install it only for BCB 2006. AutoUpgrader should be installed for entire BDS 2006 anyway). 4. Open "AutoUpgraderProBDS2006.bdsproj" file. 5. Install package to the components palette (right-click on "AutoUpgraderProBDS2006.bpl" node in the Project Manager and select "Install" menu item). * In case if you decided to use the package only in C++ Builder Personallity of BDS 2006, you can do following steps instead of previously described steps 3, 4 and 5: 3. Start C++ Builder 2006 IDE. 4. Open "AutoUpgraderProBDS2006CBuilder.bdsproj" file. 5. Install package to the components palette (right-click on "AutoUpgraderProBDS2006CBuilder.bpl" node in the Project Manager and select "Install" menu item). to Delphi 2 =========== 1. Unzip files from "Delphi2" directory to your "Delphi 2\Lib" directory. 2. Start Delphi 2 IDE. 3. Select "Component \ Install..." menu item. 4. Press "Add" button and select "_AUReg.pas" file. 5. Rebuild library. to Delphi 3 =========== 1. Unzip files from "Delphi3" directory and copy them to "Delphi 3\Lib". 2. Start Delphi 3 IDE. 3. Open "AutoUpgraderProD3.dpk" file. 4. Install package to the components palette ("Install" button). to Delphi 4 =========== 1. Unzip files from "Delphi4" directory and copy them to "Delphi 4\Lib". 2. Start Delphi 4 IDE. 3. Open "AutoUpgraderProD4.dpk" file. 4. Install package to the components palette ("Install" button). to Delphi 5 =========== 1. Unzip files from "Delphi5" directory and copy them to "Delphi 5\Lib". 2. Start Delphi 5 IDE. 3. Open "AutoUpgraderProD5.dpk" file. 4. Install package to the components palette ("Install" button). to

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Everest

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值